diff --git a/corpus/source_files.txt b/corpus/source_files.txt index 8c1e95bd..474f2f24 100644 --- a/corpus/source_files.txt +++ b/corpus/source_files.txt @@ -100,54 +100,6 @@ const d (comment) (const_declaration (const_spec (identifier)))) -================================================================================ -Directive comments -================================================================================ - -package main - -//extern test_extern -func testExtern() {} - -//export text_export -func textExport() {} - -//line test:123 -type testLine int - -//nolint:unused -type Custom int - ---- - -(source_file - (package_clause - (package_identifier)) - (comment - (directive)) - (function_declaration - (identifier) - (parameter_list) - (block)) - (comment - (directive)) - (function_declaration - (identifier) - (parameter_list) - (block)) - (comment - (directive)) - (type_declaration - (type_spec - (type_identifier) - (type_identifier))) - (comment - (directive)) - (type_declaration - (type_spec - (type_identifier) - (type_identifier)))) - ============================================ Non-ascii variable names ============================================ diff --git a/grammar.js b/grammar.js index 52e51665..be187896 100644 --- a/grammar.js +++ b/grammar.js @@ -895,19 +895,15 @@ module.exports = grammar({ false: $ => 'false', iota: $ => 'iota', - // https://tip.golang.org/doc/comment#syntax - directive: $ => token(/(line |extern |export |[a-z0-9]+:[a-z0-9])/), - // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 - comment: $ => choice( - seq('//', $.directive, /.*/), - seq('// ', /.*/), + comment: $ => token(choice( + seq('//', /.*/), seq( '/*', /[^*]*\*+([^/*][^*]*\*+)*/, '/' ) - ) + )) } }) diff --git a/src/grammar.json b/src/grammar.json index a878d8a8..962f3fa7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6720,64 +6720,43 @@ "type": "STRING", "value": "iota" }, - "directive": { + "comment": { "type": "TOKEN", "content": { - "type": "PATTERN", - "value": "(line |extern |export |[a-z0-9]+:[a-z0-9])" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] } - }, - "comment": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "SYMBOL", - "name": "directive" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "// " - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" - } - ] - } - ] } }, "extras": [ diff --git a/src/node-types.json b/src/node-types.json index 4048fba0..ff2c4d85 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -588,21 +588,6 @@ } } }, - { - "type": "comment", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "directive", - "named": true - } - ] - } - }, { "type": "communication_case", "named": true, @@ -2618,18 +2603,6 @@ "type": "/", "named": false }, - { - "type": "/*", - "named": false - }, - { - "type": "//", - "named": false - }, - { - "type": "// ", - "named": false - }, { "type": "/=", "named": false @@ -2722,6 +2695,10 @@ "type": "chan", "named": false }, + { + "type": "comment", + "named": true + }, { "type": "const", "named": false @@ -2738,10 +2715,6 @@ "type": "defer", "named": false }, - { - "type": "directive", - "named": true - }, { "type": "else", "named": false diff --git a/src/parser.c b/src/parser.c index 27ac1ee5..0bd15299 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1283 -#define LARGE_STATE_COUNT 27 -#define SYMBOL_COUNT 216 +#define STATE_COUNT 1269 +#define LARGE_STATE_COUNT 22 +#define SYMBOL_COUNT 210 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 97 +#define TOKEN_COUNT 92 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 35 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -107,135 +107,129 @@ enum { sym_true = 88, sym_false = 89, sym_iota = 90, - sym_directive = 91, - anon_sym_SLASH_SLASH = 92, - aux_sym_comment_token1 = 93, - anon_sym_SLASH_SLASH2 = 94, - anon_sym_SLASH_STAR = 95, - aux_sym_comment_token2 = 96, - sym_source_file = 97, - sym_package_clause = 98, - sym_import_declaration = 99, - sym_import_spec = 100, - sym_dot = 101, - sym_import_spec_list = 102, - sym__declaration = 103, - sym_const_declaration = 104, - sym_const_spec = 105, - sym_var_declaration = 106, - sym_var_spec = 107, - sym_function_declaration = 108, - sym_method_declaration = 109, - sym_type_parameter_list = 110, - sym_parameter_list = 111, - sym_parameter_declaration = 112, - sym_variadic_parameter_declaration = 113, - sym_type_alias = 114, - sym_type_declaration = 115, - sym_type_spec = 116, - sym_expression_list = 117, - sym_parenthesized_type = 118, - sym__simple_type = 119, - sym_generic_type = 120, - sym_type_arguments = 121, - sym_pointer_type = 122, - sym_array_type = 123, - sym_implicit_length_array_type = 124, - sym_slice_type = 125, - sym_struct_type = 126, - sym_field_declaration_list = 127, - sym_field_declaration = 128, - sym_interface_type = 129, - sym__interface_body = 130, - sym_interface_type_name = 131, - sym_constraint_elem = 132, - sym_constraint_term = 133, - sym_struct_elem = 134, - sym_struct_term = 135, - sym_method_spec = 136, - sym_map_type = 137, - sym_channel_type = 138, - sym_function_type = 139, - sym_block = 140, - sym__statement_list = 141, - sym__statement = 142, - sym_empty_statement = 143, - sym__simple_statement = 144, - sym_send_statement = 145, - sym_receive_statement = 146, - sym_inc_statement = 147, - sym_dec_statement = 148, - sym_assignment_statement = 149, - sym_short_var_declaration = 150, - sym_labeled_statement = 151, - sym_empty_labeled_statement = 152, - sym_fallthrough_statement = 153, - sym_break_statement = 154, - sym_continue_statement = 155, - sym_goto_statement = 156, - sym_return_statement = 157, - sym_go_statement = 158, - sym_defer_statement = 159, - sym_if_statement = 160, - sym_for_statement = 161, - sym_for_clause = 162, - sym_range_clause = 163, - sym_expression_switch_statement = 164, - sym_expression_case = 165, - sym_default_case = 166, - sym_type_switch_statement = 167, - sym__type_switch_header = 168, - sym_type_case = 169, - sym_select_statement = 170, - sym_communication_case = 171, - sym__expression = 172, - sym_parenthesized_expression = 173, - sym_call_expression = 174, - sym_variadic_argument = 175, - sym_special_argument_list = 176, - sym_argument_list = 177, - sym_selector_expression = 178, - sym_index_expression = 179, - sym_slice_expression = 180, - sym_type_assertion_expression = 181, - sym_type_conversion_expression = 182, - sym_composite_literal = 183, - sym_literal_value = 184, - sym_literal_element = 185, - sym_keyed_element = 186, - sym_func_literal = 187, - sym_unary_expression = 188, - sym_binary_expression = 189, - sym_qualified_type = 190, - sym_interpreted_string_literal = 191, - sym_comment = 192, - aux_sym_source_file_repeat1 = 193, - aux_sym_import_spec_list_repeat1 = 194, - aux_sym_const_declaration_repeat1 = 195, - aux_sym_const_spec_repeat1 = 196, - aux_sym_var_declaration_repeat1 = 197, - aux_sym_type_parameter_list_repeat1 = 198, - aux_sym_parameter_list_repeat1 = 199, - aux_sym_parameter_declaration_repeat1 = 200, - aux_sym_type_declaration_repeat1 = 201, - aux_sym_expression_list_repeat1 = 202, - aux_sym_type_arguments_repeat1 = 203, - aux_sym_field_declaration_list_repeat1 = 204, - aux_sym_field_declaration_repeat1 = 205, - aux_sym_interface_type_repeat1 = 206, - aux_sym_constraint_elem_repeat1 = 207, - aux_sym_struct_elem_repeat1 = 208, - aux_sym__statement_list_repeat1 = 209, - aux_sym_expression_switch_statement_repeat1 = 210, - aux_sym_type_switch_statement_repeat1 = 211, - aux_sym_select_statement_repeat1 = 212, - aux_sym_argument_list_repeat1 = 213, - aux_sym_literal_value_repeat1 = 214, - aux_sym_interpreted_string_literal_repeat1 = 215, - alias_sym_field_identifier = 216, - alias_sym_label_name = 217, - alias_sym_package_identifier = 218, - alias_sym_type_identifier = 219, + sym_comment = 91, + sym_source_file = 92, + sym_package_clause = 93, + sym_import_declaration = 94, + sym_import_spec = 95, + sym_dot = 96, + sym_import_spec_list = 97, + sym__declaration = 98, + sym_const_declaration = 99, + sym_const_spec = 100, + sym_var_declaration = 101, + sym_var_spec = 102, + sym_function_declaration = 103, + sym_method_declaration = 104, + sym_type_parameter_list = 105, + sym_parameter_list = 106, + sym_parameter_declaration = 107, + sym_variadic_parameter_declaration = 108, + sym_type_alias = 109, + sym_type_declaration = 110, + sym_type_spec = 111, + sym_expression_list = 112, + sym_parenthesized_type = 113, + sym__simple_type = 114, + sym_generic_type = 115, + sym_type_arguments = 116, + sym_pointer_type = 117, + sym_array_type = 118, + sym_implicit_length_array_type = 119, + sym_slice_type = 120, + sym_struct_type = 121, + sym_field_declaration_list = 122, + sym_field_declaration = 123, + sym_interface_type = 124, + sym__interface_body = 125, + sym_interface_type_name = 126, + sym_constraint_elem = 127, + sym_constraint_term = 128, + sym_struct_elem = 129, + sym_struct_term = 130, + sym_method_spec = 131, + sym_map_type = 132, + sym_channel_type = 133, + sym_function_type = 134, + sym_block = 135, + sym__statement_list = 136, + sym__statement = 137, + sym_empty_statement = 138, + sym__simple_statement = 139, + sym_send_statement = 140, + sym_receive_statement = 141, + sym_inc_statement = 142, + sym_dec_statement = 143, + sym_assignment_statement = 144, + sym_short_var_declaration = 145, + sym_labeled_statement = 146, + sym_empty_labeled_statement = 147, + sym_fallthrough_statement = 148, + sym_break_statement = 149, + sym_continue_statement = 150, + sym_goto_statement = 151, + sym_return_statement = 152, + sym_go_statement = 153, + sym_defer_statement = 154, + sym_if_statement = 155, + sym_for_statement = 156, + sym_for_clause = 157, + sym_range_clause = 158, + sym_expression_switch_statement = 159, + sym_expression_case = 160, + sym_default_case = 161, + sym_type_switch_statement = 162, + sym__type_switch_header = 163, + sym_type_case = 164, + sym_select_statement = 165, + sym_communication_case = 166, + sym__expression = 167, + sym_parenthesized_expression = 168, + sym_call_expression = 169, + sym_variadic_argument = 170, + sym_special_argument_list = 171, + sym_argument_list = 172, + sym_selector_expression = 173, + sym_index_expression = 174, + sym_slice_expression = 175, + sym_type_assertion_expression = 176, + sym_type_conversion_expression = 177, + sym_composite_literal = 178, + sym_literal_value = 179, + sym_literal_element = 180, + sym_keyed_element = 181, + sym_func_literal = 182, + sym_unary_expression = 183, + sym_binary_expression = 184, + sym_qualified_type = 185, + sym_interpreted_string_literal = 186, + aux_sym_source_file_repeat1 = 187, + aux_sym_import_spec_list_repeat1 = 188, + aux_sym_const_declaration_repeat1 = 189, + aux_sym_const_spec_repeat1 = 190, + aux_sym_var_declaration_repeat1 = 191, + aux_sym_type_parameter_list_repeat1 = 192, + aux_sym_parameter_list_repeat1 = 193, + aux_sym_parameter_declaration_repeat1 = 194, + aux_sym_type_declaration_repeat1 = 195, + aux_sym_expression_list_repeat1 = 196, + aux_sym_type_arguments_repeat1 = 197, + aux_sym_field_declaration_list_repeat1 = 198, + aux_sym_field_declaration_repeat1 = 199, + aux_sym_interface_type_repeat1 = 200, + aux_sym_constraint_elem_repeat1 = 201, + aux_sym_struct_elem_repeat1 = 202, + aux_sym__statement_list_repeat1 = 203, + aux_sym_expression_switch_statement_repeat1 = 204, + aux_sym_type_switch_statement_repeat1 = 205, + aux_sym_select_statement_repeat1 = 206, + aux_sym_argument_list_repeat1 = 207, + aux_sym_literal_value_repeat1 = 208, + aux_sym_interpreted_string_literal_repeat1 = 209, + alias_sym_field_identifier = 210, + alias_sym_label_name = 211, + alias_sym_package_identifier = 212, + alias_sym_type_identifier = 213, }; static const char * const ts_symbol_names[] = { @@ -330,12 +324,7 @@ static const char * const ts_symbol_names[] = { [sym_true] = "true", [sym_false] = "false", [sym_iota] = "iota", - [sym_directive] = "directive", - [anon_sym_SLASH_SLASH] = "//", - [aux_sym_comment_token1] = "comment_token1", - [anon_sym_SLASH_SLASH2] = "// ", - [anon_sym_SLASH_STAR] = "/*", - [aux_sym_comment_token2] = "comment_token2", + [sym_comment] = "comment", [sym_source_file] = "source_file", [sym_package_clause] = "package_clause", [sym_import_declaration] = "import_declaration", @@ -431,7 +420,6 @@ static const char * const ts_symbol_names[] = { [sym_binary_expression] = "binary_expression", [sym_qualified_type] = "qualified_type", [sym_interpreted_string_literal] = "interpreted_string_literal", - [sym_comment] = "comment", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_import_spec_list_repeat1] = "import_spec_list_repeat1", [aux_sym_const_declaration_repeat1] = "const_declaration_repeat1", @@ -553,12 +541,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_true] = sym_true, [sym_false] = sym_false, [sym_iota] = sym_iota, - [sym_directive] = sym_directive, - [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, - [aux_sym_comment_token1] = aux_sym_comment_token1, - [anon_sym_SLASH_SLASH2] = anon_sym_SLASH_SLASH2, - [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, - [aux_sym_comment_token2] = aux_sym_comment_token2, + [sym_comment] = sym_comment, [sym_source_file] = sym_source_file, [sym_package_clause] = sym_package_clause, [sym_import_declaration] = sym_import_declaration, @@ -654,7 +637,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_binary_expression] = sym_binary_expression, [sym_qualified_type] = sym_qualified_type, [sym_interpreted_string_literal] = sym_interpreted_string_literal, - [sym_comment] = sym_comment, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_import_spec_list_repeat1] = aux_sym_import_spec_list_repeat1, [aux_sym_const_declaration_repeat1] = aux_sym_const_declaration_repeat1, @@ -1049,30 +1031,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_directive] = { + [sym_comment] = { .visible = true, .named = true, }, - [anon_sym_SLASH_SLASH] = { - .visible = true, - .named = false, - }, - [aux_sym_comment_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_SLASH_SLASH2] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_STAR] = { - .visible = true, - .named = false, - }, - [aux_sym_comment_token2] = { - .visible = false, - .named = false, - }, [sym_source_file] = { .visible = true, .named = true, @@ -1457,10 +1419,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_comment] = { - .visible = true, - .named = true, - }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2156,12 +2114,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 10, [11] = 11, [12] = 11, - [13] = 11, + [13] = 13, [14] = 11, [15] = 11, [16] = 11, [17] = 11, - [18] = 18, + [18] = 11, [19] = 19, [20] = 20, [21] = 21, @@ -2175,210 +2133,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 32, - [33] = 33, - [34] = 33, - [35] = 33, - [36] = 33, - [37] = 33, - [38] = 33, + [32] = 31, + [33] = 31, + [34] = 31, + [35] = 31, + [36] = 31, + [37] = 37, + [38] = 38, [39] = 39, - [40] = 39, - [41] = 41, + [40] = 40, + [41] = 40, [42] = 39, [43] = 39, - [44] = 41, - [45] = 41, - [46] = 41, + [44] = 40, + [45] = 40, + [46] = 39, [47] = 39, - [48] = 39, - [49] = 41, - [50] = 41, + [48] = 40, + [49] = 39, + [50] = 40, [51] = 51, [52] = 52, [53] = 53, [54] = 54, - [55] = 54, + [55] = 55, [56] = 56, [57] = 54, - [58] = 58, + [58] = 56, [59] = 56, - [60] = 58, + [60] = 54, [61] = 61, - [62] = 54, - [63] = 56, - [64] = 58, - [65] = 65, - [66] = 58, - [67] = 54, - [68] = 56, + [62] = 61, + [63] = 61, + [64] = 64, + [65] = 54, + [66] = 54, + [67] = 61, + [68] = 68, [69] = 56, - [70] = 54, - [71] = 71, - [72] = 72, - [73] = 58, - [74] = 58, + [70] = 61, + [71] = 54, + [72] = 61, + [73] = 73, + [74] = 56, [75] = 75, [76] = 56, [77] = 77, [78] = 78, [79] = 79, - [80] = 77, + [80] = 80, [81] = 81, - [82] = 81, + [82] = 82, [83] = 83, [84] = 84, - [85] = 79, - [86] = 86, - [87] = 87, + [85] = 85, + [86] = 80, + [87] = 85, [88] = 88, - [89] = 89, - [90] = 90, - [91] = 83, - [92] = 92, - [93] = 93, - [94] = 86, - [95] = 79, - [96] = 79, + [89] = 85, + [90] = 88, + [91] = 91, + [92] = 80, + [93] = 77, + [94] = 83, + [95] = 88, + [96] = 80, [97] = 97, - [98] = 81, - [99] = 83, - [100] = 81, - [101] = 83, - [102] = 102, - [103] = 103, - [104] = 78, - [105] = 79, - [106] = 86, - [107] = 97, - [108] = 108, - [109] = 109, - [110] = 78, + [98] = 98, + [99] = 91, + [100] = 83, + [101] = 101, + [102] = 83, + [103] = 85, + [104] = 77, + [105] = 77, + [106] = 79, + [107] = 88, + [108] = 88, + [109] = 91, + [110] = 91, [111] = 111, [112] = 112, - [113] = 86, - [114] = 77, - [115] = 115, - [116] = 86, - [117] = 81, - [118] = 79, - [119] = 83, - [120] = 83, - [121] = 81, - [122] = 78, - [123] = 78, - [124] = 78, - [125] = 77, - [126] = 126, - [127] = 108, - [128] = 97, - [129] = 108, - [130] = 86, + [113] = 85, + [114] = 114, + [115] = 77, + [116] = 91, + [117] = 117, + [118] = 77, + [119] = 78, + [120] = 88, + [121] = 83, + [122] = 122, + [123] = 123, + [124] = 83, + [125] = 79, + [126] = 78, + [127] = 85, + [128] = 91, + [129] = 129, + [130] = 130, [131] = 131, [132] = 132, [133] = 133, [134] = 134, [135] = 135, - [136] = 135, + [136] = 136, [137] = 137, [138] = 138, [139] = 139, - [140] = 137, - [141] = 131, - [142] = 142, + [140] = 140, + [141] = 141, + [142] = 133, [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 146, - [148] = 144, - [149] = 139, - [150] = 143, - [151] = 142, - [152] = 152, + [144] = 134, + [145] = 138, + [146] = 139, + [147] = 143, + [148] = 140, + [149] = 149, + [150] = 131, + [151] = 136, + [152] = 149, [153] = 153, - [154] = 153, - [155] = 133, - [156] = 135, - [157] = 137, - [158] = 139, - [159] = 131, + [154] = 154, + [155] = 135, + [156] = 140, + [157] = 154, + [158] = 153, + [159] = 139, [160] = 138, - [161] = 139, - [162] = 142, - [163] = 133, - [164] = 146, - [165] = 135, - [166] = 143, - [167] = 146, - [168] = 131, - [169] = 131, - [170] = 152, - [171] = 171, - [172] = 146, - [173] = 145, - [174] = 152, - [175] = 139, - [176] = 142, - [177] = 143, - [178] = 146, - [179] = 131, - [180] = 138, - [181] = 139, + [161] = 131, + [162] = 134, + [163] = 154, + [164] = 143, + [165] = 140, + [166] = 133, + [167] = 143, + [168] = 137, + [169] = 136, + [170] = 141, + [171] = 131, + [172] = 149, + [173] = 136, + [174] = 174, + [175] = 141, + [176] = 140, + [177] = 149, + [178] = 136, + [179] = 153, + [180] = 139, + [181] = 138, [182] = 131, - [183] = 146, - [184] = 145, - [185] = 143, - [186] = 143, - [187] = 187, - [188] = 145, - [189] = 142, - [190] = 142, - [191] = 153, - [192] = 138, - [193] = 152, - [194] = 171, - [195] = 139, - [196] = 135, - [197] = 143, - [198] = 145, - [199] = 171, - [200] = 171, - [201] = 142, - [202] = 145, - [203] = 133, - [204] = 171, - [205] = 138, - [206] = 145, - [207] = 137, - [208] = 152, - [209] = 152, - [210] = 133, - [211] = 153, - [212] = 153, + [183] = 134, + [184] = 141, + [185] = 133, + [186] = 139, + [187] = 154, + [188] = 143, + [189] = 137, + [190] = 136, + [191] = 133, + [192] = 149, + [193] = 153, + [194] = 141, + [195] = 137, + [196] = 134, + [197] = 135, + [198] = 153, + [199] = 141, + [200] = 131, + [201] = 138, + [202] = 141, + [203] = 203, + [204] = 153, + [205] = 131, + [206] = 131, + [207] = 153, + [208] = 149, + [209] = 154, + [210] = 154, + [211] = 131, + [212] = 143, [213] = 213, - [214] = 139, - [215] = 131, - [216] = 138, - [217] = 152, - [218] = 171, - [219] = 145, - [220] = 146, - [221] = 152, - [222] = 133, - [223] = 143, - [224] = 224, - [225] = 225, - [226] = 142, - [227] = 171, - [228] = 171, - [229] = 135, - [230] = 145, + [214] = 133, + [215] = 133, + [216] = 134, + [217] = 138, + [218] = 134, + [219] = 138, + [220] = 139, + [221] = 140, + [222] = 222, + [223] = 139, + [224] = 140, + [225] = 140, + [226] = 226, + [227] = 137, + [228] = 228, + [229] = 139, + [230] = 138, [231] = 153, - [232] = 145, - [233] = 233, - [234] = 144, - [235] = 137, + [232] = 134, + [233] = 131, + [234] = 133, + [235] = 141, [236] = 236, [237] = 237, [238] = 238, @@ -2444,15 +2402,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [298] = 298, [299] = 299, [300] = 300, - [301] = 263, + [301] = 278, [302] = 302, [303] = 303, - [304] = 304, - [305] = 273, + [304] = 257, + [305] = 305, [306] = 306, [307] = 307, [308] = 308, - [309] = 309, + [309] = 264, [310] = 310, [311] = 311, [312] = 312, @@ -2460,7 +2418,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [314] = 314, [315] = 315, [316] = 316, - [317] = 266, + [317] = 317, [318] = 318, [319] = 319, [320] = 320, @@ -2476,518 +2434,518 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [330] = 330, [331] = 331, [332] = 332, - [333] = 271, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 337, + [337] = 248, [338] = 338, - [339] = 253, - [340] = 296, - [341] = 294, - [342] = 298, - [343] = 276, - [344] = 299, - [345] = 295, - [346] = 297, + [339] = 265, + [340] = 295, + [341] = 296, + [342] = 297, + [343] = 283, + [344] = 298, + [345] = 300, + [346] = 294, [347] = 303, - [348] = 316, - [349] = 334, - [350] = 320, - [351] = 312, - [352] = 338, - [353] = 313, - [354] = 315, - [355] = 327, - [356] = 307, + [348] = 278, + [349] = 308, + [350] = 336, + [351] = 248, + [352] = 334, + [353] = 329, + [354] = 323, + [355] = 338, + [356] = 312, [357] = 306, - [358] = 308, - [359] = 323, - [360] = 321, - [361] = 318, - [362] = 263, - [363] = 314, - [364] = 319, - [365] = 310, - [366] = 325, - [367] = 271, - [368] = 309, - [369] = 328, - [370] = 326, - [371] = 311, - [372] = 332, - [373] = 336, - [374] = 331, - [375] = 330, - [376] = 266, - [377] = 337, - [378] = 329, - [379] = 335, - [380] = 322, - [381] = 273, - [382] = 276, - [383] = 294, - [384] = 295, - [385] = 296, - [386] = 298, - [387] = 299, - [388] = 388, - [389] = 297, + [358] = 322, + [359] = 257, + [360] = 264, + [361] = 327, + [362] = 320, + [363] = 325, + [364] = 310, + [365] = 315, + [366] = 335, + [367] = 331, + [368] = 330, + [369] = 311, + [370] = 313, + [371] = 307, + [372] = 326, + [373] = 318, + [374] = 332, + [375] = 319, + [376] = 317, + [377] = 316, + [378] = 333, + [379] = 314, + [380] = 321, + [381] = 328, + [382] = 265, + [383] = 300, + [384] = 294, + [385] = 297, + [386] = 296, + [387] = 295, + [388] = 298, + [389] = 389, [390] = 303, - [391] = 312, - [392] = 308, - [393] = 327, - [394] = 326, - [395] = 338, - [396] = 329, - [397] = 337, - [398] = 332, - [399] = 336, - [400] = 320, - [401] = 311, - [402] = 328, - [403] = 335, - [404] = 263, - [405] = 323, - [406] = 314, - [407] = 331, - [408] = 330, - [409] = 310, - [410] = 273, - [411] = 306, - [412] = 322, - [413] = 321, - [414] = 318, - [415] = 307, - [416] = 271, - [417] = 266, - [418] = 325, - [419] = 319, - [420] = 309, - [421] = 334, - [422] = 313, - [423] = 315, - [424] = 316, - [425] = 299, - [426] = 296, + [391] = 335, + [392] = 320, + [393] = 338, + [394] = 306, + [395] = 310, + [396] = 315, + [397] = 323, + [398] = 329, + [399] = 278, + [400] = 312, + [401] = 308, + [402] = 330, + [403] = 326, + [404] = 314, + [405] = 336, + [406] = 317, + [407] = 248, + [408] = 322, + [409] = 318, + [410] = 257, + [411] = 319, + [412] = 334, + [413] = 316, + [414] = 321, + [415] = 328, + [416] = 325, + [417] = 333, + [418] = 311, + [419] = 332, + [420] = 307, + [421] = 327, + [422] = 331, + [423] = 264, + [424] = 313, + [425] = 300, + [426] = 294, [427] = 303, - [428] = 276, - [429] = 263, - [430] = 316, - [431] = 326, - [432] = 310, - [433] = 338, - [434] = 328, - [435] = 311, - [436] = 271, - [437] = 332, - [438] = 307, - [439] = 306, - [440] = 336, - [441] = 337, - [442] = 331, - [443] = 329, - [444] = 323, - [445] = 330, - [446] = 273, - [447] = 334, - [448] = 322, - [449] = 321, - [450] = 312, - [451] = 308, - [452] = 335, - [453] = 309, - [454] = 314, - [455] = 327, - [456] = 325, + [428] = 265, + [429] = 322, + [430] = 331, + [431] = 327, + [432] = 311, + [433] = 336, + [434] = 306, + [435] = 333, + [436] = 320, + [437] = 325, + [438] = 338, + [439] = 328, + [440] = 321, + [441] = 335, + [442] = 334, + [443] = 248, + [444] = 319, + [445] = 318, + [446] = 317, + [447] = 316, + [448] = 332, + [449] = 313, + [450] = 257, + [451] = 264, + [452] = 278, + [453] = 329, + [454] = 323, + [455] = 307, + [456] = 310, [457] = 315, - [458] = 313, - [459] = 319, - [460] = 318, - [461] = 320, - [462] = 266, - [463] = 463, - [464] = 276, - [465] = 298, - [466] = 466, + [458] = 312, + [459] = 314, + [460] = 326, + [461] = 330, + [462] = 308, + [463] = 298, + [464] = 265, + [465] = 297, + [466] = 296, [467] = 295, - [468] = 294, - [469] = 297, - [470] = 470, - [471] = 471, - [472] = 276, - [473] = 294, - [474] = 298, - [475] = 297, - [476] = 299, - [477] = 32, + [468] = 468, + [469] = 469, + [470] = 296, + [471] = 298, + [472] = 265, + [473] = 297, + [474] = 474, + [475] = 38, + [476] = 476, + [477] = 389, [478] = 295, [479] = 479, - [480] = 388, - [481] = 296, - [482] = 294, - [483] = 483, - [484] = 388, - [485] = 485, - [486] = 303, - [487] = 299, - [488] = 295, - [489] = 296, - [490] = 298, - [491] = 491, - [492] = 297, - [493] = 330, - [494] = 334, - [495] = 495, - [496] = 306, - [497] = 338, - [498] = 323, - [499] = 321, - [500] = 271, - [501] = 329, - [502] = 266, - [503] = 326, - [504] = 325, + [480] = 300, + [481] = 294, + [482] = 298, + [483] = 297, + [484] = 389, + [485] = 303, + [486] = 486, + [487] = 300, + [488] = 488, + [489] = 489, + [490] = 294, + [491] = 296, + [492] = 295, + [493] = 311, + [494] = 494, + [495] = 323, + [496] = 329, + [497] = 497, + [498] = 336, + [499] = 335, + [500] = 334, + [501] = 257, + [502] = 316, + [503] = 265, + [504] = 38, [505] = 332, - [506] = 337, - [507] = 495, - [508] = 495, - [509] = 320, - [510] = 318, - [511] = 308, - [512] = 276, - [513] = 466, - [514] = 319, - [515] = 276, - [516] = 495, - [517] = 307, - [518] = 495, - [519] = 303, - [520] = 328, - [521] = 313, - [522] = 32, - [523] = 523, - [524] = 263, - [525] = 495, - [526] = 314, - [527] = 315, - [528] = 310, - [529] = 316, - [530] = 312, - [531] = 309, - [532] = 322, - [533] = 327, - [534] = 335, - [535] = 535, - [536] = 311, - [537] = 336, - [538] = 331, - [539] = 273, - [540] = 306, - [541] = 327, - [542] = 307, - [543] = 466, - [544] = 544, - [545] = 298, - [546] = 329, - [547] = 310, - [548] = 315, - [549] = 309, - [550] = 322, - [551] = 328, - [552] = 552, - [553] = 273, - [554] = 294, - [555] = 330, - [556] = 556, - [557] = 331, - [558] = 271, - [559] = 276, - [560] = 335, - [561] = 552, - [562] = 294, - [563] = 321, - [564] = 297, - [565] = 320, - [566] = 336, - [567] = 263, - [568] = 308, - [569] = 337, - [570] = 298, - [571] = 297, - [572] = 552, - [573] = 295, - [574] = 574, + [506] = 506, + [507] = 331, + [508] = 278, + [509] = 327, + [510] = 307, + [511] = 494, + [512] = 265, + [513] = 333, + [514] = 494, + [515] = 325, + [516] = 338, + [517] = 328, + [518] = 494, + [519] = 321, + [520] = 319, + [521] = 318, + [522] = 494, + [523] = 317, + [524] = 468, + [525] = 313, + [526] = 303, + [527] = 310, + [528] = 315, + [529] = 312, + [530] = 308, + [531] = 330, + [532] = 326, + [533] = 306, + [534] = 314, + [535] = 494, + [536] = 322, + [537] = 264, + [538] = 248, + [539] = 320, + [540] = 540, + [541] = 248, + [542] = 326, + [543] = 330, + [544] = 308, + [545] = 312, + [546] = 315, + [547] = 540, + [548] = 310, + [549] = 313, + [550] = 317, + [551] = 318, + [552] = 319, + [553] = 320, + [554] = 265, + [555] = 257, + [556] = 468, + [557] = 328, + [558] = 325, + [559] = 333, + [560] = 311, + [561] = 307, + [562] = 327, + [563] = 298, + [564] = 331, + [565] = 297, + [566] = 296, + [567] = 295, + [568] = 568, + [569] = 332, + [570] = 321, + [571] = 316, + [572] = 322, + [573] = 264, + [574] = 306, [575] = 575, - [576] = 323, - [577] = 311, - [578] = 332, - [579] = 338, - [580] = 295, + [576] = 314, + [577] = 338, + [578] = 334, + [579] = 579, + [580] = 323, [581] = 581, - [582] = 316, - [583] = 318, - [584] = 313, - [585] = 326, - [586] = 325, - [587] = 266, - [588] = 314, - [589] = 312, - [590] = 334, - [591] = 319, - [592] = 32, + [582] = 298, + [583] = 540, + [584] = 278, + [585] = 297, + [586] = 296, + [587] = 295, + [588] = 329, + [589] = 589, + [590] = 336, + [591] = 335, + [592] = 592, [593] = 593, - [594] = 594, + [594] = 593, [595] = 595, - [596] = 596, - [597] = 593, - [598] = 594, - [599] = 599, - [600] = 600, - [601] = 388, - [602] = 595, - [603] = 388, - [604] = 604, - [605] = 600, - [606] = 600, - [607] = 593, - [608] = 599, - [609] = 599, - [610] = 593, - [611] = 596, - [612] = 599, - [613] = 594, - [614] = 600, - [615] = 596, - [616] = 595, - [617] = 485, - [618] = 593, - [619] = 599, - [620] = 600, - [621] = 599, - [622] = 595, - [623] = 595, - [624] = 593, - [625] = 595, - [626] = 600, - [627] = 485, + [596] = 389, + [597] = 595, + [598] = 598, + [599] = 595, + [600] = 593, + [601] = 592, + [602] = 602, + [603] = 603, + [604] = 602, + [605] = 603, + [606] = 603, + [607] = 489, + [608] = 602, + [609] = 602, + [610] = 602, + [611] = 595, + [612] = 592, + [613] = 595, + [614] = 614, + [615] = 603, + [616] = 603, + [617] = 614, + [618] = 614, + [619] = 595, + [620] = 389, + [621] = 592, + [622] = 603, + [623] = 38, + [624] = 602, + [625] = 592, + [626] = 592, + [627] = 627, [628] = 628, [629] = 629, - [630] = 628, + [630] = 630, [631] = 631, [632] = 632, [633] = 633, - [634] = 634, - [635] = 634, - [636] = 634, + [634] = 629, + [635] = 632, + [636] = 633, [637] = 632, - [638] = 634, - [639] = 628, - [640] = 632, - [641] = 632, - [642] = 628, - [643] = 643, - [644] = 628, - [645] = 645, + [638] = 638, + [639] = 639, + [640] = 633, + [641] = 641, + [642] = 489, + [643] = 633, + [644] = 629, + [645] = 632, [646] = 632, - [647] = 628, - [648] = 632, - [649] = 649, - [650] = 650, + [647] = 647, + [648] = 639, + [649] = 633, + [650] = 629, [651] = 651, - [652] = 634, - [653] = 634, - [654] = 649, - [655] = 649, - [656] = 656, - [657] = 649, - [658] = 658, - [659] = 574, + [652] = 629, + [653] = 639, + [654] = 654, + [655] = 639, + [656] = 633, + [657] = 632, + [658] = 629, + [659] = 581, [660] = 660, - [661] = 574, - [662] = 574, - [663] = 663, - [664] = 574, + [661] = 581, + [662] = 662, + [663] = 581, + [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 574, - [670] = 670, + [669] = 581, + [670] = 581, [671] = 671, [672] = 672, [673] = 673, [674] = 674, [675] = 675, [676] = 676, - [677] = 677, + [677] = 675, [678] = 671, - [679] = 673, + [679] = 671, [680] = 680, - [681] = 671, - [682] = 673, + [681] = 681, + [682] = 675, [683] = 683, [684] = 684, [685] = 685, [686] = 686, - [687] = 687, + [687] = 685, [688] = 688, - [689] = 685, - [690] = 686, - [691] = 691, + [689] = 689, + [690] = 690, + [691] = 685, [692] = 692, - [693] = 688, - [694] = 687, - [695] = 695, - [696] = 686, - [697] = 697, - [698] = 698, - [699] = 691, - [700] = 685, - [701] = 691, - [702] = 688, - [703] = 703, - [704] = 686, - [705] = 684, - [706] = 687, - [707] = 697, - [708] = 691, - [709] = 709, - [710] = 710, - [711] = 692, - [712] = 688, + [693] = 693, + [694] = 694, + [695] = 694, + [696] = 690, + [697] = 689, + [698] = 693, + [699] = 689, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 702, + [704] = 684, + [705] = 693, + [706] = 706, + [707] = 689, + [708] = 708, + [709] = 690, + [710] = 692, + [711] = 702, + [712] = 693, [713] = 713, - [714] = 687, - [715] = 715, - [716] = 713, - [717] = 686, - [718] = 697, - [719] = 692, - [720] = 720, - [721] = 684, - [722] = 722, + [714] = 714, + [715] = 714, + [716] = 700, + [717] = 708, + [718] = 694, + [719] = 689, + [720] = 701, + [721] = 692, + [722] = 702, [723] = 723, - [724] = 688, - [725] = 686, - [726] = 720, - [727] = 727, - [728] = 688, - [729] = 715, - [730] = 727, - [731] = 720, - [732] = 723, - [733] = 697, - [734] = 720, - [735] = 715, - [736] = 713, - [737] = 727, - [738] = 713, - [739] = 715, - [740] = 723, - [741] = 685, - [742] = 692, - [743] = 723, - [744] = 267, - [745] = 289, - [746] = 272, - [747] = 291, - [748] = 748, + [724] = 723, + [725] = 693, + [726] = 684, + [727] = 700, + [728] = 708, + [729] = 690, + [730] = 730, + [731] = 693, + [732] = 701, + [733] = 714, + [734] = 685, + [735] = 689, + [736] = 736, + [737] = 701, + [738] = 714, + [739] = 723, + [740] = 692, + [741] = 694, + [742] = 684, + [743] = 700, + [744] = 249, + [745] = 245, + [746] = 251, + [747] = 747, + [748] = 246, [749] = 749, - [750] = 267, - [751] = 289, - [752] = 272, - [753] = 291, + [750] = 251, + [751] = 249, + [752] = 246, + [753] = 245, [754] = 754, [755] = 755, [756] = 756, [757] = 757, - [758] = 757, - [759] = 757, - [760] = 756, - [761] = 756, - [762] = 762, - [763] = 762, - [764] = 762, + [758] = 758, + [759] = 756, + [760] = 757, + [761] = 758, + [762] = 758, + [763] = 756, + [764] = 757, [765] = 765, [766] = 766, - [767] = 765, - [768] = 765, - [769] = 769, + [767] = 766, + [768] = 766, + [769] = 747, [770] = 770, - [771] = 748, + [771] = 771, [772] = 749, [773] = 773, [774] = 774, - [775] = 775, + [775] = 236, [776] = 776, - [777] = 236, - [778] = 778, + [777] = 777, + [778] = 241, [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 783, - [784] = 236, + [783] = 236, + [784] = 784, [785] = 785, - [786] = 238, - [787] = 274, - [788] = 292, - [789] = 250, - [790] = 262, - [791] = 284, - [792] = 275, - [793] = 238, - [794] = 252, - [795] = 259, - [796] = 246, - [797] = 245, - [798] = 264, - [799] = 799, - [800] = 278, - [801] = 277, - [802] = 269, - [803] = 247, - [804] = 281, - [805] = 257, - [806] = 251, - [807] = 290, - [808] = 248, + [786] = 786, + [787] = 270, + [788] = 276, + [789] = 241, + [790] = 254, + [791] = 292, + [792] = 289, + [793] = 250, + [794] = 794, + [795] = 290, + [796] = 268, + [797] = 243, + [798] = 275, + [799] = 285, + [800] = 269, + [801] = 258, + [802] = 261, + [803] = 262, + [804] = 293, + [805] = 291, + [806] = 289, + [807] = 266, + [808] = 267, [809] = 284, - [810] = 256, - [811] = 261, - [812] = 283, - [813] = 282, - [814] = 244, - [815] = 268, - [816] = 816, - [817] = 283, - [818] = 257, - [819] = 268, - [820] = 251, - [821] = 250, - [822] = 256, - [823] = 246, - [824] = 248, - [825] = 252, - [826] = 261, - [827] = 245, - [828] = 281, - [829] = 278, - [830] = 754, - [831] = 290, - [832] = 259, - [833] = 277, - [834] = 834, - [835] = 755, - [836] = 244, - [837] = 292, - [838] = 262, - [839] = 269, - [840] = 264, - [841] = 274, - [842] = 275, + [810] = 282, + [811] = 281, + [812] = 253, + [813] = 280, + [814] = 274, + [815] = 271, + [816] = 253, + [817] = 267, + [818] = 291, + [819] = 258, + [820] = 274, + [821] = 292, + [822] = 754, + [823] = 250, + [824] = 290, + [825] = 271, + [826] = 293, + [827] = 755, + [828] = 269, + [829] = 262, + [830] = 276, + [831] = 275, + [832] = 280, + [833] = 833, + [834] = 261, + [835] = 835, + [836] = 254, + [837] = 268, + [838] = 266, + [839] = 285, + [840] = 243, + [841] = 284, + [842] = 270, [843] = 282, - [844] = 247, + [844] = 281, [845] = 845, [846] = 846, [847] = 847, @@ -2998,7 +2956,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [852] = 852, [853] = 853, [854] = 854, - [855] = 855, + [855] = 754, [856] = 856, [857] = 857, [858] = 858, @@ -3006,16 +2964,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [860] = 860, [861] = 861, [862] = 862, - [863] = 863, + [863] = 755, [864] = 864, - [865] = 754, + [865] = 865, [866] = 866, [867] = 867, [868] = 868, [869] = 869, [870] = 870, [871] = 871, - [872] = 755, + [872] = 872, [873] = 873, [874] = 874, [875] = 875, @@ -3026,8 +2984,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [880] = 880, [881] = 881, [882] = 882, - [883] = 799, - [884] = 884, + [883] = 883, + [884] = 794, [885] = 885, [886] = 886, [887] = 887, @@ -3038,15 +2996,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [892] = 892, [893] = 893, [894] = 894, - [895] = 799, + [895] = 794, [896] = 896, [897] = 897, [898] = 898, - [899] = 799, + [899] = 899, [900] = 900, [901] = 901, [902] = 902, - [903] = 903, + [903] = 794, [904] = 904, [905] = 905, [906] = 906, @@ -3056,10 +3014,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [910] = 910, [911] = 911, [912] = 912, - [913] = 911, + [913] = 890, [914] = 914, [915] = 915, - [916] = 916, + [916] = 794, [917] = 917, [918] = 918, [919] = 919, @@ -3067,17 +3025,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [921] = 921, [922] = 922, [923] = 923, - [924] = 924, + [924] = 897, [925] = 925, [926] = 926, - [927] = 925, + [927] = 927, [928] = 928, [929] = 929, - [930] = 925, - [931] = 799, + [930] = 902, + [931] = 931, [932] = 932, [933] = 933, - [934] = 799, + [934] = 934, [935] = 935, [936] = 936, [937] = 937, @@ -3088,344 +3046,330 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [942] = 942, [943] = 943, [944] = 944, - [945] = 906, - [946] = 906, - [947] = 947, - [948] = 911, + [945] = 945, + [946] = 897, + [947] = 794, + [948] = 902, [949] = 949, [950] = 950, - [951] = 951, + [951] = 890, [952] = 952, [953] = 953, [954] = 954, [955] = 955, [956] = 956, - [957] = 957, + [957] = 954, [958] = 958, [959] = 959, - [960] = 957, + [960] = 960, [961] = 956, [962] = 962, - [963] = 957, + [963] = 963, [964] = 964, [965] = 965, [966] = 966, - [967] = 967, - [968] = 965, + [967] = 956, + [968] = 960, [969] = 969, - [970] = 956, - [971] = 965, - [972] = 972, - [973] = 973, + [970] = 970, + [971] = 958, + [972] = 963, + [973] = 954, [974] = 974, - [975] = 975, - [976] = 976, + [975] = 963, + [976] = 964, [977] = 977, - [978] = 957, + [978] = 978, [979] = 979, - [980] = 980, + [980] = 963, [981] = 981, [982] = 982, - [983] = 974, - [984] = 972, - [985] = 972, - [986] = 986, + [983] = 966, + [984] = 984, + [985] = 960, + [986] = 956, [987] = 987, [988] = 988, - [989] = 956, - [990] = 957, + [989] = 989, + [990] = 956, [991] = 991, - [992] = 958, - [993] = 962, - [994] = 962, - [995] = 957, - [996] = 958, + [992] = 964, + [993] = 958, + [994] = 956, + [995] = 954, + [996] = 966, [997] = 997, - [998] = 956, - [999] = 965, - [1000] = 1000, - [1001] = 956, - [1002] = 965, + [998] = 963, + [999] = 963, + [1000] = 954, + [1001] = 1001, + [1002] = 954, [1003] = 1003, [1004] = 1004, - [1005] = 965, - [1006] = 965, - [1007] = 1007, - [1008] = 974, - [1009] = 956, + [1005] = 1005, + [1006] = 1006, + [1007] = 954, + [1008] = 963, + [1009] = 1009, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 1012, + [1014] = 867, [1015] = 1015, - [1016] = 877, - [1017] = 1017, + [1016] = 1016, + [1017] = 1009, [1018] = 1018, - [1019] = 1019, - [1020] = 849, + [1019] = 754, + [1020] = 1020, [1021] = 1021, - [1022] = 849, + [1022] = 1022, [1023] = 1023, [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 1027, + [1027] = 854, [1028] = 1028, [1029] = 1029, - [1030] = 877, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 1015, + [1034] = 1034, [1035] = 1035, - [1036] = 1036, + [1036] = 867, [1037] = 1037, - [1038] = 1037, - [1039] = 1019, - [1040] = 1023, - [1041] = 877, - [1042] = 1042, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1021, [1043] = 1043, [1044] = 1044, - [1045] = 1012, + [1045] = 1045, [1046] = 1046, - [1047] = 1047, + [1047] = 1045, [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1051, - [1052] = 1011, + [1051] = 1048, + [1052] = 1049, [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 755, - [1059] = 1015, - [1060] = 1060, - [1061] = 1049, - [1062] = 1019, - [1063] = 1063, - [1064] = 1018, - [1065] = 1065, - [1066] = 1037, - [1067] = 1067, - [1068] = 1068, - [1069] = 1037, - [1070] = 1015, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1037, + [1054] = 1038, + [1055] = 1049, + [1056] = 1045, + [1057] = 1050, + [1058] = 1058, + [1059] = 1035, + [1060] = 1048, + [1061] = 1061, + [1062] = 1038, + [1063] = 1031, + [1064] = 1021, + [1065] = 754, + [1066] = 1048, + [1067] = 1035, + [1068] = 1038, + [1069] = 1069, + [1070] = 854, + [1071] = 1032, + [1072] = 1050, + [1073] = 867, + [1074] = 867, [1075] = 1049, - [1076] = 1018, + [1076] = 1035, [1077] = 1077, - [1078] = 1056, - [1079] = 1079, - [1080] = 1012, - [1081] = 877, - [1082] = 1082, + [1078] = 1078, + [1079] = 1031, + [1080] = 1026, + [1081] = 1032, + [1082] = 1031, [1083] = 1083, [1084] = 1084, - [1085] = 1019, - [1086] = 1011, - [1087] = 849, - [1088] = 754, - [1089] = 1029, - [1090] = 1056, - [1091] = 1091, - [1092] = 1092, - [1093] = 1031, - [1094] = 1015, - [1095] = 1095, - [1096] = 754, - [1097] = 849, + [1085] = 854, + [1086] = 1045, + [1087] = 1049, + [1088] = 854, + [1089] = 1031, + [1090] = 1090, + [1091] = 1026, + [1092] = 1035, + [1093] = 1048, + [1094] = 1016, + [1095] = 1038, + [1096] = 1038, + [1097] = 1097, [1098] = 1098, - [1099] = 1023, - [1100] = 1100, - [1101] = 1011, - [1102] = 877, - [1103] = 1012, - [1104] = 849, - [1105] = 1011, - [1106] = 1049, + [1099] = 1048, + [1100] = 755, + [1101] = 1049, + [1102] = 1035, + [1103] = 1031, + [1104] = 854, + [1105] = 1045, + [1106] = 1106, [1107] = 1107, - [1108] = 1049, - [1109] = 1011, - [1110] = 1019, + [1108] = 867, + [1109] = 1109, + [1110] = 1045, [1111] = 1111, - [1112] = 1049, - [1113] = 1019, - [1114] = 1046, - [1115] = 1037, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1015, - [1120] = 1012, - [1121] = 1046, - [1122] = 1122, + [1119] = 1116, + [1120] = 1118, + [1121] = 1121, + [1122] = 949, [1123] = 1123, [1124] = 1124, - [1125] = 1125, + [1125] = 1117, [1126] = 1126, [1127] = 1127, - [1128] = 888, - [1129] = 886, - [1130] = 265, - [1131] = 1131, - [1132] = 1132, - [1133] = 255, - [1134] = 1134, + [1128] = 1128, + [1129] = 1127, + [1130] = 953, + [1131] = 286, + [1132] = 259, + [1133] = 1126, + [1134] = 909, [1135] = 1135, - [1136] = 953, - [1137] = 1131, - [1138] = 949, - [1139] = 1125, - [1140] = 293, - [1141] = 1127, - [1142] = 1135, - [1143] = 1143, - [1144] = 892, - [1145] = 1135, - [1146] = 1134, - [1147] = 1131, - [1148] = 1148, + [1136] = 907, + [1137] = 1116, + [1138] = 1116, + [1139] = 1139, + [1140] = 1140, + [1141] = 1126, + [1142] = 273, + [1143] = 900, + [1144] = 1144, + [1145] = 1124, + [1146] = 1127, + [1147] = 1147, + [1148] = 1126, [1149] = 1149, - [1150] = 1150, + [1150] = 1117, [1151] = 1151, - [1152] = 1131, - [1153] = 1153, - [1154] = 1131, + [1152] = 1126, + [1153] = 1118, + [1154] = 1117, [1155] = 1155, - [1156] = 1134, - [1157] = 1135, - [1158] = 1158, - [1159] = 1159, - [1160] = 1127, - [1161] = 1125, - [1162] = 1162, + [1156] = 1127, + [1157] = 1157, + [1158] = 1118, + [1159] = 1116, + [1160] = 1116, + [1161] = 1126, + [1162] = 1124, [1163] = 1163, [1164] = 1164, - [1165] = 1124, - [1166] = 1166, - [1167] = 1124, - [1168] = 1131, + [1165] = 1165, + [1166] = 1117, + [1167] = 1167, + [1168] = 1127, [1169] = 1169, - [1170] = 1135, + [1170] = 1170, [1171] = 1171, [1172] = 1172, - [1173] = 1124, - [1174] = 1135, - [1175] = 1125, + [1173] = 1173, + [1174] = 1174, + [1175] = 1117, [1176] = 1176, - [1177] = 1127, + [1177] = 1177, [1178] = 1178, [1179] = 1179, - [1180] = 1125, - [1181] = 1125, - [1182] = 1127, - [1183] = 1127, - [1184] = 1184, + [1180] = 1127, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1183, [1185] = 1185, - [1186] = 1186, + [1186] = 1183, [1187] = 1187, - [1188] = 1188, - [1189] = 1189, + [1188] = 1181, + [1189] = 1187, [1190] = 1190, [1191] = 1191, - [1192] = 1190, + [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1196, - [1197] = 1191, - [1198] = 1193, - [1199] = 1190, + [1196] = 1191, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1191, - [1204] = 1204, + [1203] = 1203, + [1204] = 1191, [1205] = 1205, - [1206] = 1188, + [1206] = 1206, [1207] = 1207, - [1208] = 1208, - [1209] = 1204, + [1208] = 1200, + [1209] = 1209, [1210] = 1210, [1211] = 1211, [1212] = 1212, - [1213] = 1193, - [1214] = 1214, + [1213] = 1200, + [1214] = 1210, [1215] = 1215, - [1216] = 1214, + [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 1188, - [1220] = 1220, + [1219] = 1210, + [1220] = 1206, [1221] = 1221, [1222] = 1222, - [1223] = 1214, - [1224] = 1202, - [1225] = 1214, - [1226] = 1226, - [1227] = 1214, + [1223] = 1223, + [1224] = 1187, + [1225] = 1225, + [1226] = 1207, + [1227] = 1200, [1228] = 1228, [1229] = 1229, - [1230] = 1214, - [1231] = 1190, - [1232] = 1193, - [1233] = 1204, - [1234] = 1200, - [1235] = 1211, - [1236] = 1236, - [1237] = 1204, - [1238] = 1238, - [1239] = 1202, - [1240] = 1221, - [1241] = 1200, - [1242] = 1191, - [1243] = 1243, + [1230] = 1212, + [1231] = 1191, + [1232] = 1232, + [1233] = 1181, + [1234] = 1206, + [1235] = 1187, + [1236] = 1183, + [1237] = 1183, + [1238] = 1191, + [1239] = 1212, + [1240] = 1240, + [1241] = 1210, + [1242] = 1242, + [1243] = 1201, [1244] = 1244, - [1245] = 1245, - [1246] = 1246, + [1245] = 1187, + [1246] = 1183, [1247] = 1247, [1248] = 1248, [1249] = 1249, - [1250] = 1193, - [1251] = 1190, + [1250] = 1249, + [1251] = 1191, [1252] = 1252, - [1253] = 1253, - [1254] = 1246, - [1255] = 1191, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1214, - [1263] = 1195, - [1264] = 1221, - [1265] = 1200, - [1266] = 1256, - [1267] = 1267, - [1268] = 1191, - [1269] = 1256, - [1270] = 1190, - [1271] = 1271, - [1272] = 1193, - [1273] = 1273, - [1274] = 1195, - [1275] = 1246, - [1276] = 1276, - [1277] = 1195, - [1278] = 1246, - [1279] = 1246, - [1280] = 1246, - [1281] = 1281, - [1282] = 1282, + [1253] = 1187, + [1254] = 1207, + [1255] = 1200, + [1256] = 1249, + [1257] = 1200, + [1258] = 1200, + [1259] = 1206, + [1260] = 1252, + [1261] = 1242, + [1262] = 1262, + [1263] = 1252, + [1264] = 1242, + [1265] = 1242, + [1266] = 1242, + [1267] = 1242, + [1268] = 1252, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -4989,1118 +4933,967 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(75); - if (lookahead == '!') ADVANCE(122); - if (lookahead == '"') ADVANCE(152); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(126); - if (lookahead == '\'') ADVANCE(36); - if (lookahead == '(') ADVANCE(82); - if (lookahead == ')') ADVANCE(83); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(160); - if (lookahead == ':') ADVANCE(114); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(140); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(88); - if (lookahead == '^') ADVANCE(124); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(150); - if (lookahead == '`') ADVANCE(39); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(93); - if (lookahead == '~') ADVANCE(97); + if (eof) ADVANCE(60); + if (lookahead == '!') ADVANCE(107); + if (lookahead == '"') ADVANCE(137); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(111); + if (lookahead == '\'') ADVANCE(22); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(101); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(104); + if (lookahead == '.') ADVANCE(65); + if (lookahead == '/') ADVANCE(114); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(130); + if (lookahead == '[') ADVANCE(72); + if (lookahead == '\\') ADVANCE(21); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(109); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(135); + if (lookahead == '`') ADVANCE(25); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(80); + if (lookahead == '}') ADVANCE(78); + if (lookahead == '~') ADVANCE(82); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(73) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); + lookahead == ' ') SKIP(58) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(76); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(126); - if (lookahead == '(') ADVANCE(82); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(78); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(114); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(140); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '^') ADVANCE(124); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(150); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(93); + if (lookahead == '\n') ADVANCE(61); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(111); + if (lookahead == '(') ADVANCE(67); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(101); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(104); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(114); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(130); + if (lookahead == '[') ADVANCE(72); + if (lookahead == '^') ADVANCE(109); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(135); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(80); + if (lookahead == '}') ADVANCE(78); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(76); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(127); - if (lookahead == '(') ADVANCE(82); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(78); - if (lookahead == '/') ADVANCE(128); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(143); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(146); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '^') ADVANCE(123); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(150); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(96); - if (lookahead == '}') ADVANCE(93); + if (lookahead == '\n') ADVANCE(61); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(112); + if (lookahead == '(') ADVANCE(67); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(100); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(103); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(113); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(128); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(131); + if (lookahead == '[') ADVANCE(72); + if (lookahead == '^') ADVANCE(108); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(135); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(81); + if (lookahead == '}') ADVANCE(78); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2) END_STATE(); case 3: - if (lookahead == '\n') SKIP(9) - if (lookahead == '"') ADVANCE(152); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '\\') ADVANCE(35); + if (lookahead == '\n') SKIP(8) + if (lookahead == '"') ADVANCE(137); + if (lookahead == '/') ADVANCE(138); + if (lookahead == '\\') ADVANCE(21); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(155); - if (lookahead != 0) ADVANCE(156); + lookahead == ' ') ADVANCE(141); + if (lookahead != 0) ADVANCE(142); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(171); - if (lookahead == ':') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(111); + if (lookahead == '(') ADVANCE(67); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(101); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(104); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(114); + if (lookahead == ':') ADVANCE(19); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(130); + if (lookahead == '[') ADVANCE(72); + if (lookahead == '^') ADVANCE(109); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(80); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(4) END_STATE(); case 5: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(126); - if (lookahead == '(') ADVANCE(82); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(78); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(33); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(140); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '^') ADVANCE(124); - if (lookahead == 'e') ADVANCE(30); - if (lookahead == 'l') ADVANCE(22); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(95); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(111); + if (lookahead == '(') ADVANCE(67); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(102); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(114); + if (lookahead == ':') ADVANCE(19); + if (lookahead == '<') ADVANCE(127); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(130); + if (lookahead == '[') ADVANCE(72); + if (lookahead == '^') ADVANCE(109); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(80); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(126); - if (lookahead == '(') ADVANCE(82); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(78); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(33); - if (lookahead == '<') ADVANCE(142); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '^') ADVANCE(124); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(95); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(112); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(100); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(103); + if (lookahead == '.') ADVANCE(64); + if (lookahead == '/') ADVANCE(113); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(128); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(131); + if (lookahead == '[') ADVANCE(72); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(108); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(81); + if (lookahead == '}') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) END_STATE(); case 7: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(127); - if (lookahead == '(') ADVANCE(82); - if (lookahead == ')') ADVANCE(83); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '/') ADVANCE(128); - if (lookahead == ':') ADVANCE(114); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(143); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(146); - if (lookahead == '[') ADVANCE(87); - if (lookahead == ']') ADVANCE(88); - if (lookahead == '^') ADVANCE(123); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(96); - if (lookahead == '}') ADVANCE(93); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(112); + if (lookahead == '(') ADVANCE(67); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(100); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(103); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(113); + if (lookahead == ':') ADVANCE(99); + if (lookahead == '<') ADVANCE(126); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(131); + if (lookahead == '[') ADVANCE(72); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(108); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(135); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(81); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) END_STATE(); case 8: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(127); - if (lookahead == '(') ADVANCE(82); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(78); - if (lookahead == '/') ADVANCE(128); - if (lookahead == ':') ADVANCE(114); - if (lookahead == '<') ADVANCE(141); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(146); - if (lookahead == '[') ADVANCE(87); - if (lookahead == ']') ADVANCE(88); - if (lookahead == '^') ADVANCE(123); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(150); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(96); + if (lookahead == '"') ADVANCE(137); + if (lookahead == '/') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) END_STATE(); case 9: - if (lookahead == '"') ADVANCE(152); - if (lookahead == '/') ADVANCE(11); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) + if (lookahead == '\'') ADVANCE(156); END_STATE(); case 10: - if (lookahead == '\'') ADVANCE(170); + if (lookahead == '*') ADVANCE(12); + if (lookahead == '/') ADVANCE(158); END_STATE(); case 11: - if (lookahead == '*') ADVANCE(181); - if (lookahead == '/') ADVANCE(172); + if (lookahead == '*') ADVANCE(11); + if (lookahead == '/') ADVANCE(157); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 12: - if (lookahead == '*') ADVANCE(184); - if (lookahead == '/') ADVANCE(14); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(12); - if (lookahead != 0) ADVANCE(13); + if (lookahead == '*') ADVANCE(11); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 13: - if (lookahead == '*') ADVANCE(184); - if (lookahead != 0) ADVANCE(13); + if (lookahead == '-') ADVANCE(83); END_STATE(); case 14: - if (lookahead == '*') ADVANCE(182); - if (lookahead == '/') ADVANCE(174); - if (lookahead != 0) ADVANCE(13); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); END_STATE(); case 15: - if (lookahead == '-') ADVANCE(98); + if (lookahead == '.') ADVANCE(154); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(26); + if (lookahead == '_') ADVANCE(37); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(15); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); + if (lookahead == '.') ADVANCE(74); END_STATE(); case 17: - if (lookahead == '.') ADVANCE(168); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(40); - if (lookahead == '_') ADVANCE(51); - if (lookahead == 'i') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '_') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); case 18: - if (lookahead == '.') ADVANCE(89); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(56); - if (lookahead == '_') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + if (lookahead == '=') ADVANCE(84); END_STATE(); case 20: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'e') ADVANCE(4); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 21: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'e') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == 'U') ADVANCE(55); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'x') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (lookahead != 0) ADVANCE(143); END_STATE(); case 22: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'i') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '\\') ADVANCE(34); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(9); END_STATE(); case 23: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'n') ADVANCE(4); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '_') ADVANCE(29); + if (lookahead == '0' || + lookahead == '1') ADVANCE(150); END_STATE(); case 24: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'n') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '_') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); END_STATE(); case 25: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'o') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '`') ADVANCE(136); + if (lookahead != 0) ADVANCE(25); END_STATE(); case 26: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'p') ADVANCE(25); - if (lookahead == 't') ADVANCE(21); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '+' || + lookahead == '-') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); case 27: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'r') ADVANCE(29); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(26); + if (lookahead == '_') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(27); END_STATE(); case 28: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'r') ADVANCE(23); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(26); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(27); END_STATE(); case 29: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 't') ADVANCE(4); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '0' || + lookahead == '1') ADVANCE(150); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(71); - if (lookahead == 'x') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == '8' || + lookahead == '9') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(147); END_STATE(); case 31: - if (lookahead == ':') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(9); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(31); END_STATE(); case 34: - if (lookahead == '=') ADVANCE(138); + if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(9); + if (lookahead == 'U') ADVANCE(56); + if (lookahead == 'u') ADVANCE(48); + if (lookahead == 'x') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(33); END_STATE(); case 35: - if (lookahead == 'U') ADVANCE(69); - if (lookahead == 'u') ADVANCE(61); - if (lookahead == 'x') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(159); - if (lookahead != 0) ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); case 36: - if (lookahead == '\\') ADVANCE(48); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); END_STATE(); case 37: - if (lookahead == '_') ADVANCE(43); - if (lookahead == '0' || - lookahead == '1') ADVANCE(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(15); END_STATE(); case 38: - if (lookahead == '_') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); case 39: - if (lookahead == '`') ADVANCE(151); - if (lookahead != 0) ADVANCE(39); - END_STATE(); - case 40: - if (lookahead == '+' || - lookahead == '-') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); - END_STATE(); - case 41: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(40); - if (lookahead == '_') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 42: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); - END_STATE(); - case 43: - if (lookahead == '0' || - lookahead == '1') ADVANCE(164); - END_STATE(); - case 44: - if (lookahead == '8' || - lookahead == '9') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); - END_STATE(); - case 45: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(10); - END_STATE(); - case 46: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(165); - END_STATE(); - case 47: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(45); - END_STATE(); - case 48: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(10); - if (lookahead == 'U') ADVANCE(70); - if (lookahead == 'u') ADVANCE(62); - if (lookahead == 'x') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(9); END_STATE(); - case 49: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); - END_STATE(); - case 50: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); - END_STATE(); - case 51: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); - END_STATE(); - case 52: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); - END_STATE(); - case 53: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(10); - END_STATE(); - case 54: + case 40: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); - case 55: + case 41: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); - case 56: + case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(27); END_STATE(); - case 57: + case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); - case 58: + case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); - case 59: + case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); - case 60: + case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); - case 61: + case 47: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); - case 62: + case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); - case 63: + case 49: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); - case 64: + case 50: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); - case 65: + case 51: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); - case 66: + case 52: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); - case 67: + case 53: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); END_STATE(); - case 68: + case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); END_STATE(); - case 69: + case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); - case 70: + case 56: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(68); - END_STATE(); - case 71: - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); - case 72: - if (eof) ADVANCE(75); - if (lookahead == '\n') ADVANCE(76); - if (lookahead == '!') ADVANCE(121); - if (lookahead == '"') ADVANCE(152); - if (lookahead == '&') ADVANCE(125); - if (lookahead == '\'') ADVANCE(36); - if (lookahead == '(') ADVANCE(82); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(81); - if (lookahead == '/') ADVANCE(11); - if (lookahead == '0') ADVANCE(160); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(15); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '[') ADVANCE(87); - if (lookahead == '^') ADVANCE(123); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(150); - if (lookahead == '`') ADVANCE(39); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(94); - if (lookahead == '}') ADVANCE(93); + case 57: + if (eof) ADVANCE(60); + if (lookahead == '\n') ADVANCE(61); + if (lookahead == '!') ADVANCE(106); + if (lookahead == '"') ADVANCE(137); + if (lookahead == '&') ADVANCE(110); + if (lookahead == '\'') ADVANCE(22); + if (lookahead == '(') ADVANCE(67); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(100); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(103); + if (lookahead == '.') ADVANCE(66); + if (lookahead == '/') ADVANCE(10); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(13); + if (lookahead == '=') ADVANCE(70); + if (lookahead == '[') ADVANCE(72); + if (lookahead == '^') ADVANCE(108); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(135); + if (lookahead == '`') ADVANCE(25); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(78); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(72) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); + lookahead == ' ') SKIP(57) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); - case 73: - if (eof) ADVANCE(75); - if (lookahead == '!') ADVANCE(122); - if (lookahead == '"') ADVANCE(152); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(126); - if (lookahead == '\'') ADVANCE(36); - if (lookahead == '(') ADVANCE(82); - if (lookahead == ')') ADVANCE(83); - if (lookahead == '*') ADVANCE(91); - if (lookahead == '+') ADVANCE(116); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(80); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(160); - if (lookahead == ':') ADVANCE(114); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(140); - if (lookahead == '=') ADVANCE(86); - if (lookahead == '>') ADVANCE(145); - if (lookahead == '[') ADVANCE(87); - if (lookahead == ']') ADVANCE(88); - if (lookahead == '^') ADVANCE(124); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(150); - if (lookahead == '`') ADVANCE(39); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '|') ADVANCE(95); - if (lookahead == '}') ADVANCE(93); - if (lookahead == '~') ADVANCE(97); + case 58: + if (eof) ADVANCE(60); + if (lookahead == '!') ADVANCE(107); + if (lookahead == '"') ADVANCE(137); + if (lookahead == '%') ADVANCE(116); + if (lookahead == '&') ADVANCE(111); + if (lookahead == '\'') ADVANCE(22); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(76); + if (lookahead == '+') ADVANCE(101); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(104); + if (lookahead == '.') ADVANCE(65); + if (lookahead == '/') ADVANCE(114); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(71); + if (lookahead == '>') ADVANCE(130); + if (lookahead == '[') ADVANCE(72); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(109); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(135); + if (lookahead == '`') ADVANCE(25); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '|') ADVANCE(80); + if (lookahead == '}') ADVANCE(78); + if (lookahead == '~') ADVANCE(82); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(73) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); + lookahead == ' ') SKIP(58) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); - case 74: - if (eof) ADVANCE(75); - if (lookahead == '!') ADVANCE(121); - if (lookahead == '"') ADVANCE(152); - if (lookahead == '&') ADVANCE(125); - if (lookahead == '\'') ADVANCE(36); - if (lookahead == '(') ADVANCE(82); - if (lookahead == ')') ADVANCE(83); - if (lookahead == '*') ADVANCE(90); - if (lookahead == '+') ADVANCE(115); - if (lookahead == ',') ADVANCE(84); - if (lookahead == '-') ADVANCE(118); - if (lookahead == '.') ADVANCE(16); - if (lookahead == '/') ADVANCE(11); - if (lookahead == '0') ADVANCE(160); - if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(77); - if (lookahead == '<') ADVANCE(15); - if (lookahead == '[') ADVANCE(87); - if (lookahead == ']') ADVANCE(88); - if (lookahead == '^') ADVANCE(123); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(150); - if (lookahead == '`') ADVANCE(39); - if (lookahead == '{') ADVANCE(92); - if (lookahead == '}') ADVANCE(93); + case 59: + if (eof) ADVANCE(60); + if (lookahead == '!') ADVANCE(106); + if (lookahead == '"') ADVANCE(137); + if (lookahead == '&') ADVANCE(110); + if (lookahead == '\'') ADVANCE(22); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(100); + if (lookahead == ',') ADVANCE(69); + if (lookahead == '-') ADVANCE(103); + if (lookahead == '.') ADVANCE(14); + if (lookahead == '/') ADVANCE(10); + if (lookahead == '0') ADVANCE(146); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(62); + if (lookahead == '<') ADVANCE(13); + if (lookahead == '[') ADVANCE(72); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(108); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(135); + if (lookahead == '`') ADVANCE(25); + if (lookahead == '{') ADVANCE(77); + if (lookahead == '}') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(74) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); + lookahead == ' ') SKIP(59) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); - case 75: + case 60: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 76: + case 61: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(76); + if (lookahead == '\n') ADVANCE(61); END_STATE(); - case 77: + case 62: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 78: + case 63: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 79: + case 64: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(18); + if (lookahead == '.') ADVANCE(16); END_STATE(); - case 80: + case 65: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); END_STATE(); - case 81: + case 66: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); END_STATE(); - case 82: + case 67: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 83: + case 68: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 84: + case 69: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 85: + case 70: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 86: + case 71: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '=') ADVANCE(123); END_STATE(); - case 87: + case 72: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 88: + case 73: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 89: + case 74: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 90: + case 75: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 91: + case 76: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(102); + if (lookahead == '=') ADVANCE(87); END_STATE(); - case 92: + case 77: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 93: + case 78: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 94: + case 79: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 95: + case 80: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '|') ADVANCE(149); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '|') ADVANCE(134); END_STATE(); - case 96: + case 81: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(149); + if (lookahead == '|') ADVANCE(134); END_STATE(); - case 97: + case 82: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 98: + case 83: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 99: + case 84: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 100: + case 85: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 101: + case 86: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 102: + case 87: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 103: + case 88: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 104: + case 89: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 105: + case 90: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 106: + case 91: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 107: + case 92: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 108: + case 93: ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); - case 109: + case 94: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 110: + case 95: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 111: + case 96: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 112: + case 97: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 113: + case 98: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 114: + case 99: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(99); + if (lookahead == '=') ADVANCE(84); END_STATE(); - case 115: + case 100: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 116: + case 101: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(100); - if (lookahead == '=') ADVANCE(109); + if (lookahead == '+') ADVANCE(85); + if (lookahead == '=') ADVANCE(94); END_STATE(); - case 117: + case 102: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(109); + if (lookahead == '=') ADVANCE(94); END_STATE(); - case 118: + case 103: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 119: + case 104: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(101); - if (lookahead == '=') ADVANCE(110); + if (lookahead == '-') ADVANCE(86); + if (lookahead == '=') ADVANCE(95); END_STATE(); - case 120: + case 105: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(110); + if (lookahead == '=') ADVANCE(95); END_STATE(); - case 121: + case 106: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 122: + case 107: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(139); + if (lookahead == '=') ADVANCE(124); END_STATE(); - case 123: + case 108: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 124: + case 109: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(97); END_STATE(); - case 125: + case 110: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 126: + case 111: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(148); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '^') ADVANCE(137); + if (lookahead == '&') ADVANCE(133); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '^') ADVANCE(122); END_STATE(); - case 127: + case 112: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(148); - if (lookahead == '^') ADVANCE(136); + if (lookahead == '&') ADVANCE(133); + if (lookahead == '^') ADVANCE(121); END_STATE(); - case 128: + case 113: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '/') ADVANCE(172); + if (lookahead == '*') ADVANCE(12); + if (lookahead == '/') ADVANCE(158); END_STATE(); - case 129: + case 114: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '/') ADVANCE(172); - if (lookahead == '=') ADVANCE(103); + if (lookahead == '*') ADVANCE(12); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '=') ADVANCE(88); END_STATE(); - case 130: + case 115: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 131: + case 116: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(104); + if (lookahead == '=') ADVANCE(89); END_STATE(); - case 132: + case 117: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 133: + case 118: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(105); + if (lookahead == '=') ADVANCE(90); END_STATE(); - case 134: + case 119: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 135: + case 120: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(106); + if (lookahead == '=') ADVANCE(91); END_STATE(); - case 136: + case 121: ACCEPT_TOKEN(anon_sym_AMP_CARET); END_STATE(); - case 137: + case 122: ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '=') ADVANCE(93); END_STATE(); - case 138: + case 123: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 139: + case 124: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 140: + case 125: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(98); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '-') ADVANCE(83); + if (lookahead == '<') ADVANCE(118); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 141: + case 126: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(98); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '-') ADVANCE(83); + if (lookahead == '<') ADVANCE(117); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 142: + case 127: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '<') ADVANCE(118); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 143: + case 128: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '<') ADVANCE(117); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 144: + case 129: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 145: + case 130: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(135); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '>') ADVANCE(120); END_STATE(); - case 146: + case 131: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(134); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '>') ADVANCE(119); END_STATE(); - case 147: + case 132: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 148: + case 133: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 149: + case 134: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 150: + case 135: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(150); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(135); END_STATE(); - case 151: + case 136: ACCEPT_TOKEN(sym_raw_string_literal); END_STATE(); - case 152: + case 137: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 153: + case 138: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == ' ') ADVANCE(156); + if (lookahead == '*') ADVANCE(140); + if (lookahead == '/') ADVANCE(142); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(156); + lookahead != '\\') ADVANCE(142); END_STATE(); - case 154: + case 139: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(153); + if (lookahead == '*') ADVANCE(139); + if (lookahead == '/') ADVANCE(142); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(156); + lookahead != '\\') ADVANCE(140); END_STATE(); - case 155: + case 140: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == '/') ADVANCE(154); + if (lookahead == '*') ADVANCE(139); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(140); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); + if (lookahead == '/') ADVANCE(138); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(155); + lookahead == ' ') ADVANCE(141); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(156); + lookahead != '\\') ADVANCE(142); END_STATE(); - case 156: + case 142: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(156); + lookahead != '\\') ADVANCE(142); END_STATE(); - case 157: + case 143: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 158: + case 144: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 159: + case 145: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(158); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 160: + case 146: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(168); + if (lookahead == '.') ADVANCE(154); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(37); + lookahead == 'b') ADVANCE(23); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(40); + lookahead == 'e') ADVANCE(26); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(38); + lookahead == 'o') ADVANCE(24); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(19); - if (lookahead == '_') ADVANCE(44); - if (lookahead == 'i') ADVANCE(169); + lookahead == 'x') ADVANCE(17); + if (lookahead == '_') ADVANCE(30); + if (lookahead == 'i') ADVANCE(155); if (lookahead == '8' || - lookahead == '9') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); + lookahead == '9') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(147); END_STATE(); - case 161: + case 147: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(168); + if (lookahead == '.') ADVANCE(154); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(40); - if (lookahead == '_') ADVANCE(44); - if (lookahead == 'i') ADVANCE(169); + lookahead == 'e') ADVANCE(26); + if (lookahead == '_') ADVANCE(30); + if (lookahead == 'i') ADVANCE(155); if (lookahead == '8' || - lookahead == '9') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); + lookahead == '9') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(147); END_STATE(); - case 162: + case 148: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(168); + if (lookahead == '.') ADVANCE(154); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(40); - if (lookahead == '_') ADVANCE(49); - if (lookahead == 'i') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + lookahead == 'e') ADVANCE(26); + if (lookahead == '_') ADVANCE(35); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(148); END_STATE(); - case 163: + case 149: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(42); + if (lookahead == '.') ADVANCE(28); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(40); - if (lookahead == '_') ADVANCE(55); - if (lookahead == 'i') ADVANCE(169); + lookahead == 'p') ADVANCE(26); + if (lookahead == '_') ADVANCE(41); + if (lookahead == 'i') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); - case 164: + case 150: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(43); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == '_') ADVANCE(29); + if (lookahead == 'i') ADVANCE(155); if (lookahead == '0' || - lookahead == '1') ADVANCE(164); + lookahead == '1') ADVANCE(150); END_STATE(); - case 165: + case 151: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(46); - if (lookahead == 'i') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(165); + if (lookahead == '_') ADVANCE(32); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); END_STATE(); - case 166: + case 152: ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(52); - if (lookahead == 'i') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (lookahead == '_') ADVANCE(38); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); END_STATE(); - case 167: + case 153: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(40); - if (lookahead == '_') ADVANCE(50); - if (lookahead == 'i') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); + lookahead == 'e') ADVANCE(26); + if (lookahead == '_') ADVANCE(36); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); END_STATE(); - case 168: + case 154: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(40); - if (lookahead == 'i') ADVANCE(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); + lookahead == 'e') ADVANCE(26); + if (lookahead == 'i') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); END_STATE(); - case 169: + case 155: ACCEPT_TOKEN(sym_imaginary_literal); END_STATE(); - case 170: + case 156: ACCEPT_TOKEN(sym_rune_literal); END_STATE(); - case 171: - ACCEPT_TOKEN(sym_directive); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ' ') ADVANCE(178); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ' ') ADVANCE(180); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ' ') ADVANCE(179); - if (lookahead == '*') ADVANCE(184); - if (lookahead != 0) ADVANCE(13); - END_STATE(); - case 175: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(173); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); - END_STATE(); - case 176: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '/') ADVANCE(175); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(176); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); - END_STATE(); - case 177: - ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if (lookahead == '*') ADVANCE(184); - if (lookahead != 0) ADVANCE(13); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(184); - if (lookahead != 0 && - lookahead != '/') ADVANCE(13); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(177); + case 157: + ACCEPT_TOKEN(sym_comment); END_STATE(); - case 184: - ACCEPT_TOKEN(aux_sym_comment_token2); - if (lookahead == '*') ADVANCE(184); + case 158: + ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '/') ADVANCE(13); + lookahead != '\n') ADVANCE(158); END_STATE(); default: return false; @@ -6540,311 +6333,311 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 74}, - [2] = {.lex_state = 74}, - [3] = {.lex_state = 74}, - [4] = {.lex_state = 74}, - [5] = {.lex_state = 74}, - [6] = {.lex_state = 74}, - [7] = {.lex_state = 74}, - [8] = {.lex_state = 74}, - [9] = {.lex_state = 74}, - [10] = {.lex_state = 74}, - [11] = {.lex_state = 74}, - [12] = {.lex_state = 74}, - [13] = {.lex_state = 74}, - [14] = {.lex_state = 74}, - [15] = {.lex_state = 74}, - [16] = {.lex_state = 74}, - [17] = {.lex_state = 74}, - [18] = {.lex_state = 74}, - [19] = {.lex_state = 74}, - [20] = {.lex_state = 74}, - [21] = {.lex_state = 74}, - [22] = {.lex_state = 74}, - [23] = {.lex_state = 74}, - [24] = {.lex_state = 74}, - [25] = {.lex_state = 74}, - [26] = {.lex_state = 74}, - [27] = {.lex_state = 72}, - [28] = {.lex_state = 72}, - [29] = {.lex_state = 74}, - [30] = {.lex_state = 72}, - [31] = {.lex_state = 72}, - [32] = {.lex_state = 72}, - [33] = {.lex_state = 74}, - [34] = {.lex_state = 74}, - [35] = {.lex_state = 74}, - [36] = {.lex_state = 74}, - [37] = {.lex_state = 74}, - [38] = {.lex_state = 74}, - [39] = {.lex_state = 74}, - [40] = {.lex_state = 74}, - [41] = {.lex_state = 74}, - [42] = {.lex_state = 74}, - [43] = {.lex_state = 74}, - [44] = {.lex_state = 74}, - [45] = {.lex_state = 74}, - [46] = {.lex_state = 74}, - [47] = {.lex_state = 74}, - [48] = {.lex_state = 74}, - [49] = {.lex_state = 74}, - [50] = {.lex_state = 74}, - [51] = {.lex_state = 74}, - [52] = {.lex_state = 74}, - [53] = {.lex_state = 74}, - [54] = {.lex_state = 74}, - [55] = {.lex_state = 74}, - [56] = {.lex_state = 74}, - [57] = {.lex_state = 74}, - [58] = {.lex_state = 74}, - [59] = {.lex_state = 74}, - [60] = {.lex_state = 74}, - [61] = {.lex_state = 74}, - [62] = {.lex_state = 74}, - [63] = {.lex_state = 74}, - [64] = {.lex_state = 74}, - [65] = {.lex_state = 74}, - [66] = {.lex_state = 74}, - [67] = {.lex_state = 74}, - [68] = {.lex_state = 74}, - [69] = {.lex_state = 74}, - [70] = {.lex_state = 74}, - [71] = {.lex_state = 74}, - [72] = {.lex_state = 74}, - [73] = {.lex_state = 74}, - [74] = {.lex_state = 74}, - [75] = {.lex_state = 74}, - [76] = {.lex_state = 74}, - [77] = {.lex_state = 74}, - [78] = {.lex_state = 74}, - [79] = {.lex_state = 74}, - [80] = {.lex_state = 74}, - [81] = {.lex_state = 74}, - [82] = {.lex_state = 74}, - [83] = {.lex_state = 74}, - [84] = {.lex_state = 74}, - [85] = {.lex_state = 74}, - [86] = {.lex_state = 74}, - [87] = {.lex_state = 74}, - [88] = {.lex_state = 74}, - [89] = {.lex_state = 74}, - [90] = {.lex_state = 74}, - [91] = {.lex_state = 74}, - [92] = {.lex_state = 74}, - [93] = {.lex_state = 74}, - [94] = {.lex_state = 74}, - [95] = {.lex_state = 74}, - [96] = {.lex_state = 74}, - [97] = {.lex_state = 74}, - [98] = {.lex_state = 74}, - [99] = {.lex_state = 74}, - [100] = {.lex_state = 74}, - [101] = {.lex_state = 74}, - [102] = {.lex_state = 74}, - [103] = {.lex_state = 74}, - [104] = {.lex_state = 74}, - [105] = {.lex_state = 74}, - [106] = {.lex_state = 74}, - [107] = {.lex_state = 74}, - [108] = {.lex_state = 74}, - [109] = {.lex_state = 74}, - [110] = {.lex_state = 74}, - [111] = {.lex_state = 74}, - [112] = {.lex_state = 74}, - [113] = {.lex_state = 74}, - [114] = {.lex_state = 74}, - [115] = {.lex_state = 74}, - [116] = {.lex_state = 74}, - [117] = {.lex_state = 74}, - [118] = {.lex_state = 74}, - [119] = {.lex_state = 74}, - [120] = {.lex_state = 74}, - [121] = {.lex_state = 74}, - [122] = {.lex_state = 74}, - [123] = {.lex_state = 74}, - [124] = {.lex_state = 74}, - [125] = {.lex_state = 74}, - [126] = {.lex_state = 74}, - [127] = {.lex_state = 74}, - [128] = {.lex_state = 74}, - [129] = {.lex_state = 74}, - [130] = {.lex_state = 74}, - [131] = {.lex_state = 74}, - [132] = {.lex_state = 74}, - [133] = {.lex_state = 74}, - [134] = {.lex_state = 74}, - [135] = {.lex_state = 74}, - [136] = {.lex_state = 74}, - [137] = {.lex_state = 74}, - [138] = {.lex_state = 74}, - [139] = {.lex_state = 74}, - [140] = {.lex_state = 74}, - [141] = {.lex_state = 74}, - [142] = {.lex_state = 74}, - [143] = {.lex_state = 74}, - [144] = {.lex_state = 74}, - [145] = {.lex_state = 74}, - [146] = {.lex_state = 74}, - [147] = {.lex_state = 74}, - [148] = {.lex_state = 74}, - [149] = {.lex_state = 74}, - [150] = {.lex_state = 74}, - [151] = {.lex_state = 74}, - [152] = {.lex_state = 74}, - [153] = {.lex_state = 74}, - [154] = {.lex_state = 74}, - [155] = {.lex_state = 74}, - [156] = {.lex_state = 74}, - [157] = {.lex_state = 74}, - [158] = {.lex_state = 74}, - [159] = {.lex_state = 74}, - [160] = {.lex_state = 74}, - [161] = {.lex_state = 74}, - [162] = {.lex_state = 74}, - [163] = {.lex_state = 74}, - [164] = {.lex_state = 74}, - [165] = {.lex_state = 74}, - [166] = {.lex_state = 74}, - [167] = {.lex_state = 74}, - [168] = {.lex_state = 74}, - [169] = {.lex_state = 74}, - [170] = {.lex_state = 74}, - [171] = {.lex_state = 74}, - [172] = {.lex_state = 74}, - [173] = {.lex_state = 74}, - [174] = {.lex_state = 74}, - [175] = {.lex_state = 74}, - [176] = {.lex_state = 74}, - [177] = {.lex_state = 74}, - [178] = {.lex_state = 74}, - [179] = {.lex_state = 74}, - [180] = {.lex_state = 74}, - [181] = {.lex_state = 74}, - [182] = {.lex_state = 74}, - [183] = {.lex_state = 74}, - [184] = {.lex_state = 74}, - [185] = {.lex_state = 74}, - [186] = {.lex_state = 74}, - [187] = {.lex_state = 74}, - [188] = {.lex_state = 74}, - [189] = {.lex_state = 74}, - [190] = {.lex_state = 74}, - [191] = {.lex_state = 74}, - [192] = {.lex_state = 74}, - [193] = {.lex_state = 74}, - [194] = {.lex_state = 74}, - [195] = {.lex_state = 74}, - [196] = {.lex_state = 74}, - [197] = {.lex_state = 74}, - [198] = {.lex_state = 74}, - [199] = {.lex_state = 74}, - [200] = {.lex_state = 74}, - [201] = {.lex_state = 74}, - [202] = {.lex_state = 74}, - [203] = {.lex_state = 74}, - [204] = {.lex_state = 74}, - [205] = {.lex_state = 74}, - [206] = {.lex_state = 74}, - [207] = {.lex_state = 74}, - [208] = {.lex_state = 74}, - [209] = {.lex_state = 74}, - [210] = {.lex_state = 74}, - [211] = {.lex_state = 74}, - [212] = {.lex_state = 74}, - [213] = {.lex_state = 74}, - [214] = {.lex_state = 74}, - [215] = {.lex_state = 74}, - [216] = {.lex_state = 74}, - [217] = {.lex_state = 74}, - [218] = {.lex_state = 74}, - [219] = {.lex_state = 74}, - [220] = {.lex_state = 74}, - [221] = {.lex_state = 74}, - [222] = {.lex_state = 74}, - [223] = {.lex_state = 74}, - [224] = {.lex_state = 74}, - [225] = {.lex_state = 74}, - [226] = {.lex_state = 74}, - [227] = {.lex_state = 74}, - [228] = {.lex_state = 74}, - [229] = {.lex_state = 74}, - [230] = {.lex_state = 74}, - [231] = {.lex_state = 74}, - [232] = {.lex_state = 74}, - [233] = {.lex_state = 74}, - [234] = {.lex_state = 74}, - [235] = {.lex_state = 74}, - [236] = {.lex_state = 72}, - [237] = {.lex_state = 72}, - [238] = {.lex_state = 72}, - [239] = {.lex_state = 72}, - [240] = {.lex_state = 72}, - [241] = {.lex_state = 1}, - [242] = {.lex_state = 1}, - [243] = {.lex_state = 72}, - [244] = {.lex_state = 72}, - [245] = {.lex_state = 72}, - [246] = {.lex_state = 72}, - [247] = {.lex_state = 72}, - [248] = {.lex_state = 72}, - [249] = {.lex_state = 72}, - [250] = {.lex_state = 72}, - [251] = {.lex_state = 72}, - [252] = {.lex_state = 72}, - [253] = {.lex_state = 1}, - [254] = {.lex_state = 72}, - [255] = {.lex_state = 72}, - [256] = {.lex_state = 72}, - [257] = {.lex_state = 72}, - [258] = {.lex_state = 72}, - [259] = {.lex_state = 72}, - [260] = {.lex_state = 72}, - [261] = {.lex_state = 72}, - [262] = {.lex_state = 72}, - [263] = {.lex_state = 72}, - [264] = {.lex_state = 72}, - [265] = {.lex_state = 72}, - [266] = {.lex_state = 72}, - [267] = {.lex_state = 72}, - [268] = {.lex_state = 72}, - [269] = {.lex_state = 72}, - [270] = {.lex_state = 72}, - [271] = {.lex_state = 72}, - [272] = {.lex_state = 72}, - [273] = {.lex_state = 72}, - [274] = {.lex_state = 72}, - [275] = {.lex_state = 72}, - [276] = {.lex_state = 1}, - [277] = {.lex_state = 72}, - [278] = {.lex_state = 72}, - [279] = {.lex_state = 72}, - [280] = {.lex_state = 72}, - [281] = {.lex_state = 72}, - [282] = {.lex_state = 72}, - [283] = {.lex_state = 72}, - [284] = {.lex_state = 72}, - [285] = {.lex_state = 8}, - [286] = {.lex_state = 72}, - [287] = {.lex_state = 72}, - [288] = {.lex_state = 72}, - [289] = {.lex_state = 72}, - [290] = {.lex_state = 72}, - [291] = {.lex_state = 72}, - [292] = {.lex_state = 72}, - [293] = {.lex_state = 72}, + [1] = {.lex_state = 59}, + [2] = {.lex_state = 59}, + [3] = {.lex_state = 59}, + [4] = {.lex_state = 59}, + [5] = {.lex_state = 59}, + [6] = {.lex_state = 59}, + [7] = {.lex_state = 59}, + [8] = {.lex_state = 59}, + [9] = {.lex_state = 59}, + [10] = {.lex_state = 59}, + [11] = {.lex_state = 59}, + [12] = {.lex_state = 59}, + [13] = {.lex_state = 59}, + [14] = {.lex_state = 59}, + [15] = {.lex_state = 59}, + [16] = {.lex_state = 59}, + [17] = {.lex_state = 59}, + [18] = {.lex_state = 59}, + [19] = {.lex_state = 59}, + [20] = {.lex_state = 59}, + [21] = {.lex_state = 59}, + [22] = {.lex_state = 59}, + [23] = {.lex_state = 59}, + [24] = {.lex_state = 59}, + [25] = {.lex_state = 59}, + [26] = {.lex_state = 59}, + [27] = {.lex_state = 57}, + [28] = {.lex_state = 57}, + [29] = {.lex_state = 59}, + [30] = {.lex_state = 57}, + [31] = {.lex_state = 59}, + [32] = {.lex_state = 59}, + [33] = {.lex_state = 59}, + [34] = {.lex_state = 59}, + [35] = {.lex_state = 59}, + [36] = {.lex_state = 59}, + [37] = {.lex_state = 57}, + [38] = {.lex_state = 57}, + [39] = {.lex_state = 59}, + [40] = {.lex_state = 59}, + [41] = {.lex_state = 59}, + [42] = {.lex_state = 59}, + [43] = {.lex_state = 59}, + [44] = {.lex_state = 59}, + [45] = {.lex_state = 59}, + [46] = {.lex_state = 59}, + [47] = {.lex_state = 59}, + [48] = {.lex_state = 59}, + [49] = {.lex_state = 59}, + [50] = {.lex_state = 59}, + [51] = {.lex_state = 59}, + [52] = {.lex_state = 59}, + [53] = {.lex_state = 59}, + [54] = {.lex_state = 59}, + [55] = {.lex_state = 59}, + [56] = {.lex_state = 59}, + [57] = {.lex_state = 59}, + [58] = {.lex_state = 59}, + [59] = {.lex_state = 59}, + [60] = {.lex_state = 59}, + [61] = {.lex_state = 59}, + [62] = {.lex_state = 59}, + [63] = {.lex_state = 59}, + [64] = {.lex_state = 59}, + [65] = {.lex_state = 59}, + [66] = {.lex_state = 59}, + [67] = {.lex_state = 59}, + [68] = {.lex_state = 59}, + [69] = {.lex_state = 59}, + [70] = {.lex_state = 59}, + [71] = {.lex_state = 59}, + [72] = {.lex_state = 59}, + [73] = {.lex_state = 59}, + [74] = {.lex_state = 59}, + [75] = {.lex_state = 59}, + [76] = {.lex_state = 59}, + [77] = {.lex_state = 59}, + [78] = {.lex_state = 59}, + [79] = {.lex_state = 59}, + [80] = {.lex_state = 59}, + [81] = {.lex_state = 59}, + [82] = {.lex_state = 59}, + [83] = {.lex_state = 59}, + [84] = {.lex_state = 59}, + [85] = {.lex_state = 59}, + [86] = {.lex_state = 59}, + [87] = {.lex_state = 59}, + [88] = {.lex_state = 59}, + [89] = {.lex_state = 59}, + [90] = {.lex_state = 59}, + [91] = {.lex_state = 59}, + [92] = {.lex_state = 59}, + [93] = {.lex_state = 59}, + [94] = {.lex_state = 59}, + [95] = {.lex_state = 59}, + [96] = {.lex_state = 59}, + [97] = {.lex_state = 59}, + [98] = {.lex_state = 59}, + [99] = {.lex_state = 59}, + [100] = {.lex_state = 59}, + [101] = {.lex_state = 59}, + [102] = {.lex_state = 59}, + [103] = {.lex_state = 59}, + [104] = {.lex_state = 59}, + [105] = {.lex_state = 59}, + [106] = {.lex_state = 59}, + [107] = {.lex_state = 59}, + [108] = {.lex_state = 59}, + [109] = {.lex_state = 59}, + [110] = {.lex_state = 59}, + [111] = {.lex_state = 59}, + [112] = {.lex_state = 59}, + [113] = {.lex_state = 59}, + [114] = {.lex_state = 59}, + [115] = {.lex_state = 59}, + [116] = {.lex_state = 59}, + [117] = {.lex_state = 59}, + [118] = {.lex_state = 59}, + [119] = {.lex_state = 59}, + [120] = {.lex_state = 59}, + [121] = {.lex_state = 59}, + [122] = {.lex_state = 59}, + [123] = {.lex_state = 59}, + [124] = {.lex_state = 59}, + [125] = {.lex_state = 59}, + [126] = {.lex_state = 59}, + [127] = {.lex_state = 59}, + [128] = {.lex_state = 59}, + [129] = {.lex_state = 59}, + [130] = {.lex_state = 59}, + [131] = {.lex_state = 59}, + [132] = {.lex_state = 59}, + [133] = {.lex_state = 59}, + [134] = {.lex_state = 59}, + [135] = {.lex_state = 59}, + [136] = {.lex_state = 59}, + [137] = {.lex_state = 59}, + [138] = {.lex_state = 59}, + [139] = {.lex_state = 59}, + [140] = {.lex_state = 59}, + [141] = {.lex_state = 59}, + [142] = {.lex_state = 59}, + [143] = {.lex_state = 59}, + [144] = {.lex_state = 59}, + [145] = {.lex_state = 59}, + [146] = {.lex_state = 59}, + [147] = {.lex_state = 59}, + [148] = {.lex_state = 59}, + [149] = {.lex_state = 59}, + [150] = {.lex_state = 59}, + [151] = {.lex_state = 59}, + [152] = {.lex_state = 59}, + [153] = {.lex_state = 59}, + [154] = {.lex_state = 59}, + [155] = {.lex_state = 59}, + [156] = {.lex_state = 59}, + [157] = {.lex_state = 59}, + [158] = {.lex_state = 59}, + [159] = {.lex_state = 59}, + [160] = {.lex_state = 59}, + [161] = {.lex_state = 59}, + [162] = {.lex_state = 59}, + [163] = {.lex_state = 59}, + [164] = {.lex_state = 59}, + [165] = {.lex_state = 59}, + [166] = {.lex_state = 59}, + [167] = {.lex_state = 59}, + [168] = {.lex_state = 59}, + [169] = {.lex_state = 59}, + [170] = {.lex_state = 59}, + [171] = {.lex_state = 59}, + [172] = {.lex_state = 59}, + [173] = {.lex_state = 59}, + [174] = {.lex_state = 59}, + [175] = {.lex_state = 59}, + [176] = {.lex_state = 59}, + [177] = {.lex_state = 59}, + [178] = {.lex_state = 59}, + [179] = {.lex_state = 59}, + [180] = {.lex_state = 59}, + [181] = {.lex_state = 59}, + [182] = {.lex_state = 59}, + [183] = {.lex_state = 59}, + [184] = {.lex_state = 59}, + [185] = {.lex_state = 59}, + [186] = {.lex_state = 59}, + [187] = {.lex_state = 59}, + [188] = {.lex_state = 59}, + [189] = {.lex_state = 59}, + [190] = {.lex_state = 59}, + [191] = {.lex_state = 59}, + [192] = {.lex_state = 59}, + [193] = {.lex_state = 59}, + [194] = {.lex_state = 59}, + [195] = {.lex_state = 59}, + [196] = {.lex_state = 59}, + [197] = {.lex_state = 59}, + [198] = {.lex_state = 59}, + [199] = {.lex_state = 59}, + [200] = {.lex_state = 59}, + [201] = {.lex_state = 59}, + [202] = {.lex_state = 59}, + [203] = {.lex_state = 59}, + [204] = {.lex_state = 59}, + [205] = {.lex_state = 59}, + [206] = {.lex_state = 59}, + [207] = {.lex_state = 59}, + [208] = {.lex_state = 59}, + [209] = {.lex_state = 59}, + [210] = {.lex_state = 59}, + [211] = {.lex_state = 59}, + [212] = {.lex_state = 59}, + [213] = {.lex_state = 59}, + [214] = {.lex_state = 59}, + [215] = {.lex_state = 59}, + [216] = {.lex_state = 59}, + [217] = {.lex_state = 59}, + [218] = {.lex_state = 59}, + [219] = {.lex_state = 59}, + [220] = {.lex_state = 59}, + [221] = {.lex_state = 59}, + [222] = {.lex_state = 59}, + [223] = {.lex_state = 59}, + [224] = {.lex_state = 59}, + [225] = {.lex_state = 59}, + [226] = {.lex_state = 59}, + [227] = {.lex_state = 59}, + [228] = {.lex_state = 59}, + [229] = {.lex_state = 59}, + [230] = {.lex_state = 59}, + [231] = {.lex_state = 59}, + [232] = {.lex_state = 59}, + [233] = {.lex_state = 59}, + [234] = {.lex_state = 59}, + [235] = {.lex_state = 59}, + [236] = {.lex_state = 57}, + [237] = {.lex_state = 1}, + [238] = {.lex_state = 1}, + [239] = {.lex_state = 57}, + [240] = {.lex_state = 57}, + [241] = {.lex_state = 57}, + [242] = {.lex_state = 57}, + [243] = {.lex_state = 57}, + [244] = {.lex_state = 57}, + [245] = {.lex_state = 57}, + [246] = {.lex_state = 57}, + [247] = {.lex_state = 57}, + [248] = {.lex_state = 57}, + [249] = {.lex_state = 57}, + [250] = {.lex_state = 57}, + [251] = {.lex_state = 57}, + [252] = {.lex_state = 57}, + [253] = {.lex_state = 57}, + [254] = {.lex_state = 57}, + [255] = {.lex_state = 57}, + [256] = {.lex_state = 57}, + [257] = {.lex_state = 57}, + [258] = {.lex_state = 57}, + [259] = {.lex_state = 57}, + [260] = {.lex_state = 57}, + [261] = {.lex_state = 57}, + [262] = {.lex_state = 57}, + [263] = {.lex_state = 57}, + [264] = {.lex_state = 57}, + [265] = {.lex_state = 1}, + [266] = {.lex_state = 57}, + [267] = {.lex_state = 57}, + [268] = {.lex_state = 57}, + [269] = {.lex_state = 57}, + [270] = {.lex_state = 57}, + [271] = {.lex_state = 57}, + [272] = {.lex_state = 57}, + [273] = {.lex_state = 57}, + [274] = {.lex_state = 57}, + [275] = {.lex_state = 57}, + [276] = {.lex_state = 57}, + [277] = {.lex_state = 57}, + [278] = {.lex_state = 57}, + [279] = {.lex_state = 57}, + [280] = {.lex_state = 57}, + [281] = {.lex_state = 57}, + [282] = {.lex_state = 57}, + [283] = {.lex_state = 1}, + [284] = {.lex_state = 57}, + [285] = {.lex_state = 57}, + [286] = {.lex_state = 57}, + [287] = {.lex_state = 7}, + [288] = {.lex_state = 57}, + [289] = {.lex_state = 57}, + [290] = {.lex_state = 57}, + [291] = {.lex_state = 57}, + [292] = {.lex_state = 57}, + [293] = {.lex_state = 57}, [294] = {.lex_state = 1}, [295] = {.lex_state = 1}, [296] = {.lex_state = 1}, [297] = {.lex_state = 1}, [298] = {.lex_state = 1}, - [299] = {.lex_state = 1}, - [300] = {.lex_state = 74}, + [299] = {.lex_state = 59}, + [300] = {.lex_state = 1}, [301] = {.lex_state = 1}, - [302] = {.lex_state = 5}, + [302] = {.lex_state = 4}, [303] = {.lex_state = 1}, - [304] = {.lex_state = 5}, - [305] = {.lex_state = 1}, + [304] = {.lex_state = 1}, + [305] = {.lex_state = 4}, [306] = {.lex_state = 1}, [307] = {.lex_state = 1}, [308] = {.lex_state = 1}, @@ -6863,7 +6656,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [321] = {.lex_state = 1}, [322] = {.lex_state = 1}, [323] = {.lex_state = 1}, - [324] = {.lex_state = 5}, + [324] = {.lex_state = 4}, [325] = {.lex_state = 1}, [326] = {.lex_state = 1}, [327] = {.lex_state = 1}, @@ -6878,194 +6671,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [336] = {.lex_state = 1}, [337] = {.lex_state = 1}, [338] = {.lex_state = 1}, - [339] = {.lex_state = 5}, - [340] = {.lex_state = 5}, - [341] = {.lex_state = 5}, - [342] = {.lex_state = 5}, - [343] = {.lex_state = 5}, - [344] = {.lex_state = 5}, - [345] = {.lex_state = 5}, - [346] = {.lex_state = 5}, - [347] = {.lex_state = 5}, - [348] = {.lex_state = 5}, - [349] = {.lex_state = 5}, - [350] = {.lex_state = 5}, - [351] = {.lex_state = 5}, - [352] = {.lex_state = 5}, - [353] = {.lex_state = 5}, - [354] = {.lex_state = 5}, - [355] = {.lex_state = 5}, - [356] = {.lex_state = 5}, - [357] = {.lex_state = 5}, - [358] = {.lex_state = 5}, - [359] = {.lex_state = 5}, - [360] = {.lex_state = 5}, - [361] = {.lex_state = 5}, - [362] = {.lex_state = 5}, - [363] = {.lex_state = 5}, - [364] = {.lex_state = 5}, - [365] = {.lex_state = 5}, - [366] = {.lex_state = 5}, - [367] = {.lex_state = 5}, - [368] = {.lex_state = 5}, - [369] = {.lex_state = 5}, - [370] = {.lex_state = 5}, - [371] = {.lex_state = 5}, - [372] = {.lex_state = 5}, - [373] = {.lex_state = 5}, - [374] = {.lex_state = 5}, - [375] = {.lex_state = 5}, - [376] = {.lex_state = 5}, - [377] = {.lex_state = 5}, - [378] = {.lex_state = 5}, - [379] = {.lex_state = 5}, - [380] = {.lex_state = 5}, - [381] = {.lex_state = 5}, - [382] = {.lex_state = 6}, - [383] = {.lex_state = 6}, - [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, - [389] = {.lex_state = 6}, - [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 6}, - [394] = {.lex_state = 6}, - [395] = {.lex_state = 6}, - [396] = {.lex_state = 6}, - [397] = {.lex_state = 6}, - [398] = {.lex_state = 6}, - [399] = {.lex_state = 6}, - [400] = {.lex_state = 6}, - [401] = {.lex_state = 6}, - [402] = {.lex_state = 6}, - [403] = {.lex_state = 6}, - [404] = {.lex_state = 6}, - [405] = {.lex_state = 6}, - [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, - [408] = {.lex_state = 6}, - [409] = {.lex_state = 6}, - [410] = {.lex_state = 6}, - [411] = {.lex_state = 6}, - [412] = {.lex_state = 6}, - [413] = {.lex_state = 6}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 6}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 6}, - [421] = {.lex_state = 6}, - [422] = {.lex_state = 6}, - [423] = {.lex_state = 6}, - [424] = {.lex_state = 6}, - [425] = {.lex_state = 7}, - [426] = {.lex_state = 7}, - [427] = {.lex_state = 7}, - [428] = {.lex_state = 7}, - [429] = {.lex_state = 7}, - [430] = {.lex_state = 7}, - [431] = {.lex_state = 7}, - [432] = {.lex_state = 7}, - [433] = {.lex_state = 7}, - [434] = {.lex_state = 7}, - [435] = {.lex_state = 7}, - [436] = {.lex_state = 7}, - [437] = {.lex_state = 7}, - [438] = {.lex_state = 7}, - [439] = {.lex_state = 7}, - [440] = {.lex_state = 7}, - [441] = {.lex_state = 7}, - [442] = {.lex_state = 7}, - [443] = {.lex_state = 7}, - [444] = {.lex_state = 7}, - [445] = {.lex_state = 7}, - [446] = {.lex_state = 7}, - [447] = {.lex_state = 7}, - [448] = {.lex_state = 7}, - [449] = {.lex_state = 7}, - [450] = {.lex_state = 7}, - [451] = {.lex_state = 7}, - [452] = {.lex_state = 7}, - [453] = {.lex_state = 7}, - [454] = {.lex_state = 7}, - [455] = {.lex_state = 7}, - [456] = {.lex_state = 7}, - [457] = {.lex_state = 7}, - [458] = {.lex_state = 7}, - [459] = {.lex_state = 7}, - [460] = {.lex_state = 7}, - [461] = {.lex_state = 7}, - [462] = {.lex_state = 7}, - [463] = {.lex_state = 72}, + [339] = {.lex_state = 4}, + [340] = {.lex_state = 4}, + [341] = {.lex_state = 4}, + [342] = {.lex_state = 4}, + [343] = {.lex_state = 4}, + [344] = {.lex_state = 4}, + [345] = {.lex_state = 4}, + [346] = {.lex_state = 4}, + [347] = {.lex_state = 4}, + [348] = {.lex_state = 4}, + [349] = {.lex_state = 4}, + [350] = {.lex_state = 4}, + [351] = {.lex_state = 4}, + [352] = {.lex_state = 4}, + [353] = {.lex_state = 4}, + [354] = {.lex_state = 4}, + [355] = {.lex_state = 4}, + [356] = {.lex_state = 4}, + [357] = {.lex_state = 4}, + [358] = {.lex_state = 4}, + [359] = {.lex_state = 4}, + [360] = {.lex_state = 4}, + [361] = {.lex_state = 4}, + [362] = {.lex_state = 4}, + [363] = {.lex_state = 4}, + [364] = {.lex_state = 4}, + [365] = {.lex_state = 4}, + [366] = {.lex_state = 4}, + [367] = {.lex_state = 4}, + [368] = {.lex_state = 4}, + [369] = {.lex_state = 4}, + [370] = {.lex_state = 4}, + [371] = {.lex_state = 4}, + [372] = {.lex_state = 4}, + [373] = {.lex_state = 4}, + [374] = {.lex_state = 4}, + [375] = {.lex_state = 4}, + [376] = {.lex_state = 4}, + [377] = {.lex_state = 4}, + [378] = {.lex_state = 4}, + [379] = {.lex_state = 4}, + [380] = {.lex_state = 4}, + [381] = {.lex_state = 4}, + [382] = {.lex_state = 5}, + [383] = {.lex_state = 5}, + [384] = {.lex_state = 5}, + [385] = {.lex_state = 5}, + [386] = {.lex_state = 5}, + [387] = {.lex_state = 5}, + [388] = {.lex_state = 5}, + [389] = {.lex_state = 5}, + [390] = {.lex_state = 5}, + [391] = {.lex_state = 5}, + [392] = {.lex_state = 5}, + [393] = {.lex_state = 5}, + [394] = {.lex_state = 5}, + [395] = {.lex_state = 5}, + [396] = {.lex_state = 5}, + [397] = {.lex_state = 5}, + [398] = {.lex_state = 5}, + [399] = {.lex_state = 5}, + [400] = {.lex_state = 5}, + [401] = {.lex_state = 5}, + [402] = {.lex_state = 5}, + [403] = {.lex_state = 5}, + [404] = {.lex_state = 5}, + [405] = {.lex_state = 5}, + [406] = {.lex_state = 5}, + [407] = {.lex_state = 5}, + [408] = {.lex_state = 5}, + [409] = {.lex_state = 5}, + [410] = {.lex_state = 5}, + [411] = {.lex_state = 5}, + [412] = {.lex_state = 5}, + [413] = {.lex_state = 5}, + [414] = {.lex_state = 5}, + [415] = {.lex_state = 5}, + [416] = {.lex_state = 5}, + [417] = {.lex_state = 5}, + [418] = {.lex_state = 5}, + [419] = {.lex_state = 5}, + [420] = {.lex_state = 5}, + [421] = {.lex_state = 5}, + [422] = {.lex_state = 5}, + [423] = {.lex_state = 5}, + [424] = {.lex_state = 5}, + [425] = {.lex_state = 6}, + [426] = {.lex_state = 6}, + [427] = {.lex_state = 6}, + [428] = {.lex_state = 6}, + [429] = {.lex_state = 6}, + [430] = {.lex_state = 6}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 6}, + [433] = {.lex_state = 6}, + [434] = {.lex_state = 6}, + [435] = {.lex_state = 6}, + [436] = {.lex_state = 6}, + [437] = {.lex_state = 6}, + [438] = {.lex_state = 6}, + [439] = {.lex_state = 6}, + [440] = {.lex_state = 6}, + [441] = {.lex_state = 6}, + [442] = {.lex_state = 6}, + [443] = {.lex_state = 6}, + [444] = {.lex_state = 6}, + [445] = {.lex_state = 6}, + [446] = {.lex_state = 6}, + [447] = {.lex_state = 6}, + [448] = {.lex_state = 6}, + [449] = {.lex_state = 6}, + [450] = {.lex_state = 6}, + [451] = {.lex_state = 6}, + [452] = {.lex_state = 6}, + [453] = {.lex_state = 6}, + [454] = {.lex_state = 6}, + [455] = {.lex_state = 6}, + [456] = {.lex_state = 6}, + [457] = {.lex_state = 6}, + [458] = {.lex_state = 6}, + [459] = {.lex_state = 6}, + [460] = {.lex_state = 6}, + [461] = {.lex_state = 6}, + [462] = {.lex_state = 6}, + [463] = {.lex_state = 6}, [464] = {.lex_state = 2}, - [465] = {.lex_state = 7}, - [466] = {.lex_state = 2}, - [467] = {.lex_state = 7}, - [468] = {.lex_state = 7}, - [469] = {.lex_state = 7}, - [470] = {.lex_state = 8}, - [471] = {.lex_state = 72}, - [472] = {.lex_state = 8}, + [465] = {.lex_state = 6}, + [466] = {.lex_state = 6}, + [467] = {.lex_state = 6}, + [468] = {.lex_state = 2}, + [469] = {.lex_state = 57}, + [470] = {.lex_state = 2}, + [471] = {.lex_state = 2}, + [472] = {.lex_state = 7}, [473] = {.lex_state = 2}, - [474] = {.lex_state = 2}, - [475] = {.lex_state = 2}, - [476] = {.lex_state = 2}, - [477] = {.lex_state = 72}, + [474] = {.lex_state = 7}, + [475] = {.lex_state = 57}, + [476] = {.lex_state = 57}, + [477] = {.lex_state = 2}, [478] = {.lex_state = 2}, - [479] = {.lex_state = 72}, + [479] = {.lex_state = 57}, [480] = {.lex_state = 2}, [481] = {.lex_state = 2}, - [482] = {.lex_state = 8}, - [483] = {.lex_state = 2}, - [484] = {.lex_state = 7}, + [482] = {.lex_state = 7}, + [483] = {.lex_state = 7}, + [484] = {.lex_state = 6}, [485] = {.lex_state = 2}, [486] = {.lex_state = 2}, - [487] = {.lex_state = 8}, - [488] = {.lex_state = 8}, - [489] = {.lex_state = 8}, - [490] = {.lex_state = 8}, - [491] = {.lex_state = 2}, - [492] = {.lex_state = 8}, + [487] = {.lex_state = 7}, + [488] = {.lex_state = 2}, + [489] = {.lex_state = 2}, + [490] = {.lex_state = 7}, + [491] = {.lex_state = 7}, + [492] = {.lex_state = 7}, [493] = {.lex_state = 2}, - [494] = {.lex_state = 2}, - [495] = {.lex_state = 7}, + [494] = {.lex_state = 6}, + [495] = {.lex_state = 2}, [496] = {.lex_state = 2}, - [497] = {.lex_state = 2}, + [497] = {.lex_state = 0}, [498] = {.lex_state = 2}, [499] = {.lex_state = 2}, [500] = {.lex_state = 2}, [501] = {.lex_state = 2}, [502] = {.lex_state = 2}, - [503] = {.lex_state = 2}, - [504] = {.lex_state = 2}, + [503] = {.lex_state = 6}, + [504] = {.lex_state = 0}, [505] = {.lex_state = 2}, - [506] = {.lex_state = 2}, - [507] = {.lex_state = 7}, - [508] = {.lex_state = 7}, + [506] = {.lex_state = 6}, + [507] = {.lex_state = 2}, + [508] = {.lex_state = 2}, [509] = {.lex_state = 2}, [510] = {.lex_state = 2}, - [511] = {.lex_state = 2}, - [512] = {.lex_state = 7}, - [513] = {.lex_state = 7}, - [514] = {.lex_state = 2}, - [515] = {.lex_state = 7}, - [516] = {.lex_state = 7}, + [511] = {.lex_state = 6}, + [512] = {.lex_state = 6}, + [513] = {.lex_state = 2}, + [514] = {.lex_state = 6}, + [515] = {.lex_state = 2}, + [516] = {.lex_state = 2}, [517] = {.lex_state = 2}, - [518] = {.lex_state = 7}, - [519] = {.lex_state = 8}, + [518] = {.lex_state = 6}, + [519] = {.lex_state = 2}, [520] = {.lex_state = 2}, [521] = {.lex_state = 2}, - [522] = {.lex_state = 0}, - [523] = {.lex_state = 7}, - [524] = {.lex_state = 2}, - [525] = {.lex_state = 7}, - [526] = {.lex_state = 2}, + [522] = {.lex_state = 6}, + [523] = {.lex_state = 2}, + [524] = {.lex_state = 6}, + [525] = {.lex_state = 2}, + [526] = {.lex_state = 7}, [527] = {.lex_state = 2}, [528] = {.lex_state = 2}, [529] = {.lex_state = 2}, @@ -7074,132 +6867,132 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [532] = {.lex_state = 2}, [533] = {.lex_state = 2}, [534] = {.lex_state = 2}, - [535] = {.lex_state = 0}, + [535] = {.lex_state = 6}, [536] = {.lex_state = 2}, [537] = {.lex_state = 2}, [538] = {.lex_state = 2}, [539] = {.lex_state = 2}, - [540] = {.lex_state = 8}, - [541] = {.lex_state = 8}, - [542] = {.lex_state = 8}, + [540] = {.lex_state = 0}, + [541] = {.lex_state = 7}, + [542] = {.lex_state = 7}, [543] = {.lex_state = 7}, [544] = {.lex_state = 7}, [545] = {.lex_state = 7}, - [546] = {.lex_state = 8}, - [547] = {.lex_state = 8}, - [548] = {.lex_state = 8}, - [549] = {.lex_state = 8}, - [550] = {.lex_state = 8}, - [551] = {.lex_state = 8}, - [552] = {.lex_state = 0}, - [553] = {.lex_state = 8}, - [554] = {.lex_state = 7}, - [555] = {.lex_state = 8}, - [556] = {.lex_state = 7}, - [557] = {.lex_state = 8}, - [558] = {.lex_state = 8}, + [546] = {.lex_state = 7}, + [547] = {.lex_state = 0}, + [548] = {.lex_state = 7}, + [549] = {.lex_state = 7}, + [550] = {.lex_state = 7}, + [551] = {.lex_state = 7}, + [552] = {.lex_state = 7}, + [553] = {.lex_state = 7}, + [554] = {.lex_state = 6}, + [555] = {.lex_state = 7}, + [556] = {.lex_state = 6}, + [557] = {.lex_state = 7}, + [558] = {.lex_state = 7}, [559] = {.lex_state = 7}, - [560] = {.lex_state = 8}, - [561] = {.lex_state = 0}, + [560] = {.lex_state = 7}, + [561] = {.lex_state = 7}, [562] = {.lex_state = 7}, - [563] = {.lex_state = 8}, + [563] = {.lex_state = 6}, [564] = {.lex_state = 7}, - [565] = {.lex_state = 8}, - [566] = {.lex_state = 8}, - [567] = {.lex_state = 8}, - [568] = {.lex_state = 8}, - [569] = {.lex_state = 8}, + [565] = {.lex_state = 6}, + [566] = {.lex_state = 6}, + [567] = {.lex_state = 6}, + [568] = {.lex_state = 6}, + [569] = {.lex_state = 7}, [570] = {.lex_state = 7}, [571] = {.lex_state = 7}, - [572] = {.lex_state = 0}, + [572] = {.lex_state = 7}, [573] = {.lex_state = 7}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 7}, - [576] = {.lex_state = 8}, - [577] = {.lex_state = 8}, - [578] = {.lex_state = 8}, - [579] = {.lex_state = 8}, + [574] = {.lex_state = 7}, + [575] = {.lex_state = 6}, + [576] = {.lex_state = 7}, + [577] = {.lex_state = 7}, + [578] = {.lex_state = 7}, + [579] = {.lex_state = 0}, [580] = {.lex_state = 7}, [581] = {.lex_state = 0}, - [582] = {.lex_state = 8}, - [583] = {.lex_state = 8}, - [584] = {.lex_state = 8}, - [585] = {.lex_state = 8}, - [586] = {.lex_state = 8}, - [587] = {.lex_state = 8}, - [588] = {.lex_state = 8}, - [589] = {.lex_state = 8}, - [590] = {.lex_state = 8}, - [591] = {.lex_state = 8}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 7}, + [582] = {.lex_state = 6}, + [583] = {.lex_state = 0}, + [584] = {.lex_state = 7}, + [585] = {.lex_state = 6}, + [586] = {.lex_state = 6}, + [587] = {.lex_state = 6}, + [588] = {.lex_state = 7}, + [589] = {.lex_state = 6}, + [590] = {.lex_state = 7}, + [591] = {.lex_state = 7}, + [592] = {.lex_state = 6}, + [593] = {.lex_state = 0}, [594] = {.lex_state = 0}, - [595] = {.lex_state = 7}, - [596] = {.lex_state = 0}, - [597] = {.lex_state = 7}, - [598] = {.lex_state = 0}, - [599] = {.lex_state = 7}, - [600] = {.lex_state = 7}, - [601] = {.lex_state = 7}, - [602] = {.lex_state = 7}, - [603] = {.lex_state = 7}, - [604] = {.lex_state = 7}, - [605] = {.lex_state = 7}, - [606] = {.lex_state = 7}, - [607] = {.lex_state = 7}, - [608] = {.lex_state = 7}, - [609] = {.lex_state = 7}, - [610] = {.lex_state = 7}, - [611] = {.lex_state = 0}, - [612] = {.lex_state = 7}, - [613] = {.lex_state = 0}, - [614] = {.lex_state = 7}, - [615] = {.lex_state = 0}, - [616] = {.lex_state = 7}, - [617] = {.lex_state = 7}, - [618] = {.lex_state = 7}, - [619] = {.lex_state = 7}, - [620] = {.lex_state = 7}, - [621] = {.lex_state = 7}, - [622] = {.lex_state = 7}, - [623] = {.lex_state = 7}, - [624] = {.lex_state = 7}, - [625] = {.lex_state = 7}, - [626] = {.lex_state = 7}, - [627] = {.lex_state = 7}, - [628] = {.lex_state = 7}, - [629] = {.lex_state = 7}, - [630] = {.lex_state = 7}, - [631] = {.lex_state = 7}, - [632] = {.lex_state = 7}, - [633] = {.lex_state = 7}, - [634] = {.lex_state = 7}, - [635] = {.lex_state = 7}, - [636] = {.lex_state = 7}, - [637] = {.lex_state = 7}, - [638] = {.lex_state = 7}, - [639] = {.lex_state = 7}, - [640] = {.lex_state = 7}, - [641] = {.lex_state = 7}, - [642] = {.lex_state = 7}, - [643] = {.lex_state = 0}, - [644] = {.lex_state = 7}, - [645] = {.lex_state = 7}, - [646] = {.lex_state = 7}, - [647] = {.lex_state = 7}, - [648] = {.lex_state = 7}, - [649] = {.lex_state = 7}, - [650] = {.lex_state = 0}, - [651] = {.lex_state = 0}, - [652] = {.lex_state = 7}, - [653] = {.lex_state = 7}, - [654] = {.lex_state = 7}, - [655] = {.lex_state = 7}, - [656] = {.lex_state = 7}, - [657] = {.lex_state = 7}, - [658] = {.lex_state = 72}, + [595] = {.lex_state = 6}, + [596] = {.lex_state = 6}, + [597] = {.lex_state = 6}, + [598] = {.lex_state = 6}, + [599] = {.lex_state = 6}, + [600] = {.lex_state = 0}, + [601] = {.lex_state = 6}, + [602] = {.lex_state = 6}, + [603] = {.lex_state = 6}, + [604] = {.lex_state = 6}, + [605] = {.lex_state = 6}, + [606] = {.lex_state = 6}, + [607] = {.lex_state = 6}, + [608] = {.lex_state = 6}, + [609] = {.lex_state = 6}, + [610] = {.lex_state = 6}, + [611] = {.lex_state = 6}, + [612] = {.lex_state = 6}, + [613] = {.lex_state = 6}, + [614] = {.lex_state = 0}, + [615] = {.lex_state = 6}, + [616] = {.lex_state = 6}, + [617] = {.lex_state = 0}, + [618] = {.lex_state = 0}, + [619] = {.lex_state = 6}, + [620] = {.lex_state = 6}, + [621] = {.lex_state = 6}, + [622] = {.lex_state = 6}, + [623] = {.lex_state = 0}, + [624] = {.lex_state = 6}, + [625] = {.lex_state = 6}, + [626] = {.lex_state = 6}, + [627] = {.lex_state = 6}, + [628] = {.lex_state = 57}, + [629] = {.lex_state = 6}, + [630] = {.lex_state = 6}, + [631] = {.lex_state = 6}, + [632] = {.lex_state = 6}, + [633] = {.lex_state = 6}, + [634] = {.lex_state = 6}, + [635] = {.lex_state = 6}, + [636] = {.lex_state = 6}, + [637] = {.lex_state = 6}, + [638] = {.lex_state = 0}, + [639] = {.lex_state = 6}, + [640] = {.lex_state = 6}, + [641] = {.lex_state = 0}, + [642] = {.lex_state = 6}, + [643] = {.lex_state = 6}, + [644] = {.lex_state = 6}, + [645] = {.lex_state = 6}, + [646] = {.lex_state = 6}, + [647] = {.lex_state = 0}, + [648] = {.lex_state = 6}, + [649] = {.lex_state = 6}, + [650] = {.lex_state = 6}, + [651] = {.lex_state = 6}, + [652] = {.lex_state = 6}, + [653] = {.lex_state = 6}, + [654] = {.lex_state = 6}, + [655] = {.lex_state = 6}, + [656] = {.lex_state = 6}, + [657] = {.lex_state = 6}, + [658] = {.lex_state = 6}, [659] = {.lex_state = 0}, - [660] = {.lex_state = 7}, + [660] = {.lex_state = 6}, [661] = {.lex_state = 0}, [662] = {.lex_state = 0}, [663] = {.lex_state = 0}, @@ -7283,12 +7076,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [741] = {.lex_state = 0}, [742] = {.lex_state = 0}, [743] = {.lex_state = 0}, - [744] = {.lex_state = 72}, - [745] = {.lex_state = 72}, - [746] = {.lex_state = 72}, - [747] = {.lex_state = 72}, - [748] = {.lex_state = 72}, - [749] = {.lex_state = 72}, + [744] = {.lex_state = 57}, + [745] = {.lex_state = 57}, + [746] = {.lex_state = 57}, + [747] = {.lex_state = 57}, + [748] = {.lex_state = 57}, + [749] = {.lex_state = 57}, [750] = {.lex_state = 0}, [751] = {.lex_state = 0}, [752] = {.lex_state = 0}, @@ -7314,10 +7107,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [772] = {.lex_state = 0}, [773] = {.lex_state = 0}, [774] = {.lex_state = 0}, - [775] = {.lex_state = 0}, + [775] = {.lex_state = 57}, [776] = {.lex_state = 0}, - [777] = {.lex_state = 72}, - [778] = {.lex_state = 0}, + [777] = {.lex_state = 0}, + [778] = {.lex_state = 57}, [779] = {.lex_state = 0}, [780] = {.lex_state = 0}, [781] = {.lex_state = 0}, @@ -7325,56 +7118,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [783] = {.lex_state = 0}, [784] = {.lex_state = 0}, [785] = {.lex_state = 0}, - [786] = {.lex_state = 72}, - [787] = {.lex_state = 72}, - [788] = {.lex_state = 72}, - [789] = {.lex_state = 72}, - [790] = {.lex_state = 72}, - [791] = {.lex_state = 72}, - [792] = {.lex_state = 72}, - [793] = {.lex_state = 0}, - [794] = {.lex_state = 72}, - [795] = {.lex_state = 72}, - [796] = {.lex_state = 72}, - [797] = {.lex_state = 72}, - [798] = {.lex_state = 72}, - [799] = {.lex_state = 0}, - [800] = {.lex_state = 72}, - [801] = {.lex_state = 72}, - [802] = {.lex_state = 72}, - [803] = {.lex_state = 72}, - [804] = {.lex_state = 72}, - [805] = {.lex_state = 72}, - [806] = {.lex_state = 72}, - [807] = {.lex_state = 72}, - [808] = {.lex_state = 72}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 72}, - [811] = {.lex_state = 72}, - [812] = {.lex_state = 72}, - [813] = {.lex_state = 72}, - [814] = {.lex_state = 72}, - [815] = {.lex_state = 72}, - [816] = {.lex_state = 72}, + [786] = {.lex_state = 0}, + [787] = {.lex_state = 57}, + [788] = {.lex_state = 57}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 57}, + [791] = {.lex_state = 57}, + [792] = {.lex_state = 57}, + [793] = {.lex_state = 57}, + [794] = {.lex_state = 0}, + [795] = {.lex_state = 57}, + [796] = {.lex_state = 57}, + [797] = {.lex_state = 57}, + [798] = {.lex_state = 57}, + [799] = {.lex_state = 57}, + [800] = {.lex_state = 57}, + [801] = {.lex_state = 57}, + [802] = {.lex_state = 57}, + [803] = {.lex_state = 57}, + [804] = {.lex_state = 57}, + [805] = {.lex_state = 57}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 57}, + [808] = {.lex_state = 57}, + [809] = {.lex_state = 57}, + [810] = {.lex_state = 57}, + [811] = {.lex_state = 57}, + [812] = {.lex_state = 57}, + [813] = {.lex_state = 57}, + [814] = {.lex_state = 57}, + [815] = {.lex_state = 57}, + [816] = {.lex_state = 0}, [817] = {.lex_state = 0}, [818] = {.lex_state = 0}, [819] = {.lex_state = 0}, [820] = {.lex_state = 0}, [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, + [822] = {.lex_state = 57}, [823] = {.lex_state = 0}, [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, - [827] = {.lex_state = 0}, + [827] = {.lex_state = 57}, [828] = {.lex_state = 0}, [829] = {.lex_state = 0}, - [830] = {.lex_state = 72}, + [830] = {.lex_state = 0}, [831] = {.lex_state = 0}, [832] = {.lex_state = 0}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 72}, - [835] = {.lex_state = 72}, + [833] = {.lex_state = 57}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 57}, [836] = {.lex_state = 0}, [837] = {.lex_state = 0}, [838] = {.lex_state = 0}, @@ -7384,172 +7177,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, - [845] = {.lex_state = 72}, + [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, - [847] = {.lex_state = 72}, - [848] = {.lex_state = 72}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 72}, - [851] = {.lex_state = 72}, - [852] = {.lex_state = 72}, + [847] = {.lex_state = 0}, + [848] = {.lex_state = 57}, + [849] = {.lex_state = 57}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 0}, [853] = {.lex_state = 0}, - [854] = {.lex_state = 72}, + [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, - [859] = {.lex_state = 0}, + [859] = {.lex_state = 57}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 72}, + [861] = {.lex_state = 57}, + [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 72}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 72}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 72}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 72}, - [874] = {.lex_state = 72}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 72}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, + [865] = {.lex_state = 57}, + [866] = {.lex_state = 57}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 57}, + [869] = {.lex_state = 57}, + [870] = {.lex_state = 57}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 57}, + [873] = {.lex_state = 57}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 57}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 57}, + [878] = {.lex_state = 57}, [879] = {.lex_state = 0}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 72}, - [882] = {.lex_state = 72}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 72}, - [885] = {.lex_state = 72}, - [886] = {.lex_state = 72}, - [887] = {.lex_state = 72}, - [888] = {.lex_state = 72}, - [889] = {.lex_state = 72}, - [890] = {.lex_state = 72}, - [891] = {.lex_state = 72}, - [892] = {.lex_state = 72}, - [893] = {.lex_state = 72}, - [894] = {.lex_state = 72}, + [880] = {.lex_state = 57}, + [881] = {.lex_state = 57}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 57}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 57}, + [886] = {.lex_state = 57}, + [887] = {.lex_state = 57}, + [888] = {.lex_state = 57}, + [889] = {.lex_state = 57}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 57}, + [892] = {.lex_state = 57}, + [893] = {.lex_state = 57}, + [894] = {.lex_state = 57}, [895] = {.lex_state = 0}, - [896] = {.lex_state = 72}, - [897] = {.lex_state = 72}, - [898] = {.lex_state = 72}, + [896] = {.lex_state = 57}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 57}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 72}, - [901] = {.lex_state = 72}, - [902] = {.lex_state = 72}, - [903] = {.lex_state = 72}, - [904] = {.lex_state = 72}, - [905] = {.lex_state = 72}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 72}, - [908] = {.lex_state = 72}, - [909] = {.lex_state = 72}, - [910] = {.lex_state = 72}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 72}, + [900] = {.lex_state = 57}, + [901] = {.lex_state = 57}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 57}, + [905] = {.lex_state = 57}, + [906] = {.lex_state = 57}, + [907] = {.lex_state = 57}, + [908] = {.lex_state = 57}, + [909] = {.lex_state = 57}, + [910] = {.lex_state = 57}, + [911] = {.lex_state = 57}, + [912] = {.lex_state = 57}, [913] = {.lex_state = 0}, - [914] = {.lex_state = 72}, - [915] = {.lex_state = 72}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 57}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 72}, - [918] = {.lex_state = 72}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 72}, - [922] = {.lex_state = 72}, - [923] = {.lex_state = 72}, - [924] = {.lex_state = 72}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 72}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 72}, - [929] = {.lex_state = 72}, + [917] = {.lex_state = 57}, + [918] = {.lex_state = 57}, + [919] = {.lex_state = 57}, + [920] = {.lex_state = 57}, + [921] = {.lex_state = 57}, + [922] = {.lex_state = 57}, + [923] = {.lex_state = 57}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 57}, + [926] = {.lex_state = 57}, + [927] = {.lex_state = 57}, + [928] = {.lex_state = 57}, + [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 72}, - [933] = {.lex_state = 72}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 72}, - [936] = {.lex_state = 72}, - [937] = {.lex_state = 72}, - [938] = {.lex_state = 72}, - [939] = {.lex_state = 72}, - [940] = {.lex_state = 72}, - [941] = {.lex_state = 72}, - [942] = {.lex_state = 72}, - [943] = {.lex_state = 72}, - [944] = {.lex_state = 72}, - [945] = {.lex_state = 0}, + [931] = {.lex_state = 57}, + [932] = {.lex_state = 57}, + [933] = {.lex_state = 57}, + [934] = {.lex_state = 57}, + [935] = {.lex_state = 57}, + [936] = {.lex_state = 57}, + [937] = {.lex_state = 57}, + [938] = {.lex_state = 57}, + [939] = {.lex_state = 57}, + [940] = {.lex_state = 57}, + [941] = {.lex_state = 57}, + [942] = {.lex_state = 57}, + [943] = {.lex_state = 57}, + [944] = {.lex_state = 57}, + [945] = {.lex_state = 57}, [946] = {.lex_state = 0}, - [947] = {.lex_state = 72}, + [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, - [949] = {.lex_state = 72}, - [950] = {.lex_state = 72}, - [951] = {.lex_state = 72}, - [952] = {.lex_state = 72}, - [953] = {.lex_state = 72}, - [954] = {.lex_state = 72}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 3}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 72}, + [949] = {.lex_state = 57}, + [950] = {.lex_state = 57}, + [951] = {.lex_state = 0}, + [952] = {.lex_state = 57}, + [953] = {.lex_state = 57}, + [954] = {.lex_state = 3}, + [955] = {.lex_state = 57}, + [956] = {.lex_state = 0}, + [957] = {.lex_state = 3}, + [958] = {.lex_state = 57}, [959] = {.lex_state = 0}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 3}, - [962] = {.lex_state = 72}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 3}, - [966] = {.lex_state = 72}, + [960] = {.lex_state = 57}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 3}, + [964] = {.lex_state = 57}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 57}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 3}, - [969] = {.lex_state = 72}, - [970] = {.lex_state = 3}, - [971] = {.lex_state = 3}, - [972] = {.lex_state = 72}, - [973] = {.lex_state = 72}, - [974] = {.lex_state = 72}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 72}, + [968] = {.lex_state = 57}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0}, + [971] = {.lex_state = 57}, + [972] = {.lex_state = 3}, + [973] = {.lex_state = 3}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 3}, + [976] = {.lex_state = 57}, [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, + [978] = {.lex_state = 57}, [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 72}, - [984] = {.lex_state = 72}, - [985] = {.lex_state = 72}, - [986] = {.lex_state = 72}, - [987] = {.lex_state = 72}, - [988] = {.lex_state = 72}, - [989] = {.lex_state = 3}, + [980] = {.lex_state = 3}, + [981] = {.lex_state = 3}, + [982] = {.lex_state = 57}, + [983] = {.lex_state = 57}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 57}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 57}, + [988] = {.lex_state = 57}, + [989] = {.lex_state = 0}, [990] = {.lex_state = 0}, - [991] = {.lex_state = 72}, - [992] = {.lex_state = 72}, - [993] = {.lex_state = 72}, - [994] = {.lex_state = 72}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 72}, - [997] = {.lex_state = 3}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 57}, + [993] = {.lex_state = 57}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 3}, + [996] = {.lex_state = 57}, + [997] = {.lex_state = 0}, [998] = {.lex_state = 3}, [999] = {.lex_state = 3}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 3}, + [1000] = {.lex_state = 3}, + [1001] = {.lex_state = 57}, [1002] = {.lex_state = 3}, [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 3}, - [1006] = {.lex_state = 3}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 72}, - [1009] = {.lex_state = 3}, - [1010] = {.lex_state = 0}, + [1004] = {.lex_state = 57}, + [1005] = {.lex_state = 57}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 3}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 57}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, [1013] = {.lex_state = 0}, @@ -7567,79 +7360,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1025] = {.lex_state = 0}, [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, + [1028] = {.lex_state = 57}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 72}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 72}, + [1033] = {.lex_state = 57}, + [1034] = {.lex_state = 57}, + [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, + [1037] = {.lex_state = 57}, [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, + [1041] = {.lex_state = 57}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 0}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 72}, - [1048] = {.lex_state = 72}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 72}, - [1051] = {.lex_state = 72}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 72}, - [1055] = {.lex_state = 72}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 0}, [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 72}, + [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 72}, + [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 3}, - [1068] = {.lex_state = 72}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 72}, + [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, + [1077] = {.lex_state = 57}, + [1078] = {.lex_state = 57}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, [1081] = {.lex_state = 0}, [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 72}, + [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, [1086] = {.lex_state = 0}, [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, + [1090] = {.lex_state = 57}, [1091] = {.lex_state = 0}, [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0}, + [1097] = {.lex_state = 57}, + [1098] = {.lex_state = 57}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 72}, + [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, @@ -7648,9 +7441,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, + [1109] = {.lex_state = 57}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, + [1111] = {.lex_state = 57}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, @@ -7669,32 +7462,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 72}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 72}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 57}, + [1132] = {.lex_state = 57}, + [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 72}, + [1139] = {.lex_state = 57}, + [1140] = {.lex_state = 57}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, + [1142] = {.lex_state = 57}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 72}, + [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0}, + [1155] = {.lex_state = 57}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, @@ -7702,30 +7495,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 72}, + [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1169] = {.lex_state = 57}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 72}, + [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, + [1178] = {.lex_state = 57}, [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 72}, + [1184] = {.lex_state = 0}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 72}, + [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, @@ -7744,7 +7537,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 5}, + [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, @@ -7786,7 +7579,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 176}, + [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, @@ -7808,25 +7601,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 12}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 176}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {(TSStateId)(-1)}, - [1282] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -7916,2797 +7694,2222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), [sym_iota] = ACTIONS(1), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1257), - [sym_package_clause] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_function_declaration] = STATE(243), - [sym_method_declaration] = STATE(243), - [sym_type_declaration] = STATE(890), + [sym_source_file] = STATE(1244), + [sym_package_clause] = STATE(247), + [sym_import_declaration] = STATE(247), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_function_declaration] = STATE(247), + [sym_method_declaration] = STATE(247), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(1149), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(1), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(1140), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), [aux_sym_source_file_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(9), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_package] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [2] = { - [sym_package_clause] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_function_declaration] = STATE(243), - [sym_method_declaration] = STATE(243), - [sym_type_declaration] = STATE(890), + [sym_package_clause] = STATE(247), + [sym_import_declaration] = STATE(247), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_function_declaration] = STATE(247), + [sym_method_declaration] = STATE(247), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(1149), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(2), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(1140), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), [aux_sym_source_file_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(77), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_package] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(73), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [3] = { - [sym_package_clause] = STATE(243), - [sym_import_declaration] = STATE(243), - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_function_declaration] = STATE(243), - [sym_method_declaration] = STATE(243), - [sym_type_declaration] = STATE(890), + [sym_package_clause] = STATE(247), + [sym_import_declaration] = STATE(247), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_function_declaration] = STATE(247), + [sym_method_declaration] = STATE(247), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(1149), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(3), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(1140), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), [aux_sym_source_file_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(79), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(84), - [anon_sym_package] = ACTIONS(87), - [anon_sym_import] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(93), - [anon_sym_const] = ACTIONS(96), - [anon_sym_var] = ACTIONS(99), - [anon_sym_func] = ACTIONS(102), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_type] = ACTIONS(108), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_struct] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_interface] = ACTIONS(120), - [anon_sym_map] = ACTIONS(123), - [anon_sym_chan] = ACTIONS(126), - [anon_sym_LT_DASH] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(132), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(138), - [anon_sym_goto] = ACTIONS(141), - [anon_sym_return] = ACTIONS(144), - [anon_sym_go] = ACTIONS(147), - [anon_sym_defer] = ACTIONS(150), - [anon_sym_if] = ACTIONS(153), - [anon_sym_for] = ACTIONS(156), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_select] = ACTIONS(162), - [anon_sym_new] = ACTIONS(165), - [anon_sym_make] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_BANG] = ACTIONS(168), - [anon_sym_CARET] = ACTIONS(168), - [anon_sym_AMP] = ACTIONS(168), - [sym_raw_string_literal] = ACTIONS(171), - [anon_sym_DQUOTE] = ACTIONS(174), - [sym_int_literal] = ACTIONS(177), - [sym_float_literal] = ACTIONS(177), - [sym_imaginary_literal] = ACTIONS(171), - [sym_rune_literal] = ACTIONS(171), - [sym_nil] = ACTIONS(177), - [sym_true] = ACTIONS(177), - [sym_false] = ACTIONS(177), - [sym_iota] = ACTIONS(177), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(80), + [anon_sym_package] = ACTIONS(83), + [anon_sym_import] = ACTIONS(86), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_const] = ACTIONS(92), + [anon_sym_var] = ACTIONS(95), + [anon_sym_func] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_type] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(107), + [anon_sym_struct] = ACTIONS(110), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_interface] = ACTIONS(116), + [anon_sym_map] = ACTIONS(119), + [anon_sym_chan] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(125), + [anon_sym_fallthrough] = ACTIONS(128), + [anon_sym_break] = ACTIONS(131), + [anon_sym_continue] = ACTIONS(134), + [anon_sym_goto] = ACTIONS(137), + [anon_sym_return] = ACTIONS(140), + [anon_sym_go] = ACTIONS(143), + [anon_sym_defer] = ACTIONS(146), + [anon_sym_if] = ACTIONS(149), + [anon_sym_for] = ACTIONS(152), + [anon_sym_switch] = ACTIONS(155), + [anon_sym_select] = ACTIONS(158), + [anon_sym_new] = ACTIONS(161), + [anon_sym_make] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(164), + [anon_sym_DASH] = ACTIONS(164), + [anon_sym_BANG] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(164), + [sym_raw_string_literal] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(170), + [sym_int_literal] = ACTIONS(173), + [sym_float_literal] = ACTIONS(173), + [sym_imaginary_literal] = ACTIONS(167), + [sym_rune_literal] = ACTIONS(167), + [sym_nil] = ACTIONS(173), + [sym_true] = ACTIONS(173), + [sym_false] = ACTIONS(173), + [sym_iota] = ACTIONS(173), + [sym_comment] = ACTIONS(3), }, [4] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1084), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(4), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1025), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1025), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(182), + [anon_sym_default] = ACTIONS(182), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + }, + [5] = { + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), + [sym_expression_list] = STATE(767), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1030), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1030), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), [anon_sym_RBRACE] = ACTIONS(184), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(186), [anon_sym_default] = ACTIONS(186), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, - [5] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [6] = { + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1092), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(5), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1018), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1018), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), [anon_sym_RBRACE] = ACTIONS(188), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(190), [anon_sym_default] = ACTIONS(190), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, - [6] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [7] = { + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1095), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1024), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(6), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(194), [anon_sym_default] = ACTIONS(194), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, - [7] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [8] = { + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1107), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(7), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1022), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1022), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), [anon_sym_RBRACE] = ACTIONS(196), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(198), [anon_sym_default] = ACTIONS(198), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, - [8] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [9] = { + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1073), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(8), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(908), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1084), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), [anon_sym_RBRACE] = ACTIONS(200), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(202), [anon_sym_default] = ACTIONS(202), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, - [9] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [10] = { + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(914), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1060), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(9), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(908), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1039), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), [anon_sym_RBRACE] = ACTIONS(204), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(206), [anon_sym_default] = ACTIONS(206), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - }, - [10] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), - [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(914), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1053), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(10), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(210), - [anon_sym_default] = ACTIONS(210), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [11] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1262), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(11), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1255), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1255), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [12] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1227), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(12), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(214), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1257), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1257), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(210), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [13] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1216), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(13), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(950), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(214), + [anon_sym_default] = ACTIONS(214), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [14] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1223), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(14), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1213), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1213), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [15] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1225), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(15), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(220), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1258), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1258), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [16] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1214), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(16), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(222), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1200), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1200), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(220), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [17] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement_list] = STATE(1230), - [sym__statement] = STATE(845), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(17), - [sym_identifier] = ACTIONS(180), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1227), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1227), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [18] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(885), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(18), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement_list] = STATE(1208), + [sym__statement] = STATE(849), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_empty_labeled_statement] = STATE(1208), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(176), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [19] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(885), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(19), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(950), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [20] = { - [sym__declaration] = STATE(889), - [sym_const_declaration] = STATE(890), - [sym_var_declaration] = STATE(890), - [sym_type_declaration] = STATE(890), + [sym__declaration] = STATE(896), + [sym_const_declaration] = STATE(896), + [sym_var_declaration] = STATE(896), + [sym_type_declaration] = STATE(896), [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1254), - [sym__simple_type] = STATE(1254), - [sym_generic_type] = STATE(1104), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1104), - [sym_implicit_length_array_type] = STATE(1145), - [sym_slice_type] = STATE(1104), - [sym_struct_type] = STATE(1104), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1104), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(889), - [sym__statement] = STATE(914), - [sym_empty_statement] = STATE(889), - [sym__simple_statement] = STATE(889), - [sym_send_statement] = STATE(892), - [sym_inc_statement] = STATE(892), - [sym_dec_statement] = STATE(892), - [sym_assignment_statement] = STATE(892), - [sym_short_var_declaration] = STATE(892), - [sym_labeled_statement] = STATE(889), - [sym_fallthrough_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_goto_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_go_statement] = STATE(889), - [sym_defer_statement] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_expression_switch_statement] = STATE(889), - [sym_type_switch_statement] = STATE(889), - [sym_select_statement] = STATE(889), - [sym__expression] = STATE(253), - [sym_parenthesized_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_selector_expression] = STATE(335), - [sym_index_expression] = STATE(335), - [sym_slice_expression] = STATE(335), - [sym_type_assertion_expression] = STATE(335), - [sym_type_conversion_expression] = STATE(335), - [sym_composite_literal] = STATE(335), - [sym_func_literal] = STATE(335), - [sym_unary_expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_qualified_type] = STATE(895), - [sym_interpreted_string_literal] = STATE(335), - [sym_comment] = STATE(20), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_func] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(43), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_goto] = ACTIONS(51), - [anon_sym_return] = ACTIONS(53), - [anon_sym_go] = ACTIONS(55), - [anon_sym_defer] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_select] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_make] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_CARET] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(69), - [sym_raw_string_literal] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [sym_int_literal] = ACTIONS(75), - [sym_float_literal] = ACTIONS(75), - [sym_imaginary_literal] = ACTIONS(71), - [sym_rune_literal] = ACTIONS(71), - [sym_nil] = ACTIONS(75), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_iota] = ACTIONS(75), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_type] = STATE(1242), + [sym__simple_type] = STATE(1242), + [sym_generic_type] = STATE(1014), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1014), + [sym_implicit_length_array_type] = STATE(1137), + [sym_slice_type] = STATE(1014), + [sym_struct_type] = STATE(1014), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1014), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(896), + [sym__statement] = STATE(908), + [sym_empty_statement] = STATE(896), + [sym__simple_statement] = STATE(896), + [sym_send_statement] = STATE(900), + [sym_inc_statement] = STATE(900), + [sym_dec_statement] = STATE(900), + [sym_assignment_statement] = STATE(900), + [sym_short_var_declaration] = STATE(900), + [sym_labeled_statement] = STATE(896), + [sym_fallthrough_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_go_statement] = STATE(896), + [sym_defer_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_expression_switch_statement] = STATE(896), + [sym_type_switch_statement] = STATE(896), + [sym_select_statement] = STATE(896), + [sym__expression] = STATE(283), + [sym_parenthesized_expression] = STATE(320), + [sym_call_expression] = STATE(320), + [sym_selector_expression] = STATE(320), + [sym_index_expression] = STATE(320), + [sym_slice_expression] = STATE(320), + [sym_type_assertion_expression] = STATE(320), + [sym_type_conversion_expression] = STATE(320), + [sym_composite_literal] = STATE(320), + [sym_func_literal] = STATE(320), + [sym_unary_expression] = STATE(320), + [sym_binary_expression] = STATE(320), + [sym_qualified_type] = STATE(903), + [sym_interpreted_string_literal] = STATE(320), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_var] = ACTIONS(19), + [anon_sym_func] = ACTIONS(178), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_fallthrough] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_goto] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_defer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_select] = ACTIONS(61), + [anon_sym_new] = ACTIONS(63), + [anon_sym_make] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(65), + [anon_sym_AMP] = ACTIONS(65), + [sym_raw_string_literal] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(69), + [sym_int_literal] = ACTIONS(71), + [sym_float_literal] = ACTIONS(71), + [sym_imaginary_literal] = ACTIONS(67), + [sym_rune_literal] = ACTIONS(67), + [sym_nil] = ACTIONS(71), + [sym_true] = ACTIONS(71), + [sym_false] = ACTIONS(71), + [sym_iota] = ACTIONS(71), + [sym_comment] = ACTIONS(3), }, [21] = { - [sym_expression_list] = STATE(770), - [sym_parenthesized_type] = STATE(1279), - [sym__simple_type] = STATE(1279), - [sym_generic_type] = STATE(1087), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1087), - [sym_implicit_length_array_type] = STATE(1142), - [sym_slice_type] = STATE(1087), - [sym_struct_type] = STATE(1087), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1087), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym_block] = STATE(947), - [sym__simple_statement] = STATE(1210), - [sym_send_statement] = STATE(1144), - [sym_inc_statement] = STATE(1144), - [sym_dec_statement] = STATE(1144), - [sym_assignment_statement] = STATE(1144), - [sym_short_var_declaration] = STATE(1144), - [sym_for_clause] = STATE(1179), - [sym_range_clause] = STATE(1179), + [sym_expression_list] = STATE(771), + [sym_parenthesized_type] = STATE(1265), + [sym__simple_type] = STATE(1265), + [sym_generic_type] = STATE(1073), + [sym_pointer_type] = STATE(816), + [sym_array_type] = STATE(1073), + [sym_implicit_length_array_type] = STATE(1159), + [sym_slice_type] = STATE(1073), + [sym_struct_type] = STATE(1073), + [sym_interface_type] = STATE(816), + [sym_map_type] = STATE(1073), + [sym_channel_type] = STATE(816), + [sym_function_type] = STATE(816), + [sym_block] = STATE(928), + [sym__simple_statement] = STATE(1197), + [sym_send_statement] = STATE(1143), + [sym_inc_statement] = STATE(1143), + [sym_dec_statement] = STATE(1143), + [sym_assignment_statement] = STATE(1143), + [sym_short_var_declaration] = STATE(1143), + [sym_for_clause] = STATE(1164), + [sym_range_clause] = STATE(1164), [sym__expression] = STATE(302), - [sym_parenthesized_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_selector_expression] = STATE(379), - [sym_index_expression] = STATE(379), - [sym_slice_expression] = STATE(379), - [sym_type_assertion_expression] = STATE(379), - [sym_type_conversion_expression] = STATE(379), - [sym_composite_literal] = STATE(379), - [sym_func_literal] = STATE(379), - [sym_unary_expression] = STATE(379), - [sym_binary_expression] = STATE(379), - [sym_qualified_type] = STATE(899), - [sym_interpreted_string_literal] = STATE(379), - [sym_comment] = STATE(21), - [sym_identifier] = ACTIONS(230), - [anon_sym_SEMI] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_func] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(240), - [anon_sym_range] = ACTIONS(242), - [anon_sym_new] = ACTIONS(244), - [anon_sym_make] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(248), - [anon_sym_DQUOTE] = ACTIONS(250), - [sym_int_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_imaginary_literal] = ACTIONS(248), - [sym_rune_literal] = ACTIONS(248), - [sym_nil] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_iota] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - }, - [22] = { - [sym_expression_list] = STATE(766), - [sym_parenthesized_type] = STATE(1279), - [sym__simple_type] = STATE(1279), - [sym_generic_type] = STATE(1087), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1087), - [sym_implicit_length_array_type] = STATE(1142), - [sym_slice_type] = STATE(1087), - [sym_struct_type] = STATE(1087), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1087), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym__simple_statement] = STATE(1208), - [sym_send_statement] = STATE(1144), - [sym_inc_statement] = STATE(1144), - [sym_dec_statement] = STATE(1144), - [sym_assignment_statement] = STATE(1144), - [sym_short_var_declaration] = STATE(1144), - [sym__type_switch_header] = STATE(1207), - [sym__expression] = STATE(324), - [sym_parenthesized_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_selector_expression] = STATE(379), - [sym_index_expression] = STATE(379), - [sym_slice_expression] = STATE(379), - [sym_type_assertion_expression] = STATE(379), - [sym_type_conversion_expression] = STATE(379), - [sym_composite_literal] = STATE(379), - [sym_func_literal] = STATE(379), - [sym_unary_expression] = STATE(379), - [sym_binary_expression] = STATE(379), - [sym_qualified_type] = STATE(899), - [sym_interpreted_string_literal] = STATE(379), - [sym_comment] = STATE(22), - [sym_identifier] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_func] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(254), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(244), - [anon_sym_make] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(248), - [anon_sym_DQUOTE] = ACTIONS(250), - [sym_int_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_imaginary_literal] = ACTIONS(248), - [sym_rune_literal] = ACTIONS(248), - [sym_nil] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_iota] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - }, - [23] = { - [sym_expression_list] = STATE(765), - [sym_parenthesized_type] = STATE(1279), - [sym__simple_type] = STATE(1279), - [sym_generic_type] = STATE(1087), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1087), - [sym_implicit_length_array_type] = STATE(1142), - [sym_slice_type] = STATE(1087), - [sym_struct_type] = STATE(1087), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1087), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym__simple_statement] = STATE(1196), - [sym_send_statement] = STATE(1144), - [sym_inc_statement] = STATE(1144), - [sym_dec_statement] = STATE(1144), - [sym_assignment_statement] = STATE(1144), - [sym_short_var_declaration] = STATE(1144), - [sym__expression] = STATE(339), - [sym_parenthesized_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_selector_expression] = STATE(379), - [sym_index_expression] = STATE(379), - [sym_slice_expression] = STATE(379), - [sym_type_assertion_expression] = STATE(379), - [sym_type_conversion_expression] = STATE(379), - [sym_composite_literal] = STATE(379), - [sym_func_literal] = STATE(379), - [sym_unary_expression] = STATE(379), - [sym_binary_expression] = STATE(379), - [sym_qualified_type] = STATE(899), - [sym_interpreted_string_literal] = STATE(379), - [sym_comment] = STATE(23), - [sym_identifier] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_func] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(244), - [anon_sym_make] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(248), - [anon_sym_DQUOTE] = ACTIONS(250), - [sym_int_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_imaginary_literal] = ACTIONS(248), - [sym_rune_literal] = ACTIONS(248), - [sym_nil] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_iota] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - }, - [24] = { - [sym_expression_list] = STATE(765), - [sym_parenthesized_type] = STATE(1279), - [sym__simple_type] = STATE(1279), - [sym_generic_type] = STATE(1087), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1087), - [sym_implicit_length_array_type] = STATE(1142), - [sym_slice_type] = STATE(1087), - [sym_struct_type] = STATE(1087), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1087), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym__simple_statement] = STATE(1189), - [sym_send_statement] = STATE(1144), - [sym_inc_statement] = STATE(1144), - [sym_dec_statement] = STATE(1144), - [sym_assignment_statement] = STATE(1144), - [sym_short_var_declaration] = STATE(1144), - [sym__expression] = STATE(339), - [sym_parenthesized_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_selector_expression] = STATE(379), - [sym_index_expression] = STATE(379), - [sym_slice_expression] = STATE(379), - [sym_type_assertion_expression] = STATE(379), - [sym_type_conversion_expression] = STATE(379), - [sym_composite_literal] = STATE(379), - [sym_func_literal] = STATE(379), - [sym_unary_expression] = STATE(379), - [sym_binary_expression] = STATE(379), - [sym_qualified_type] = STATE(899), - [sym_interpreted_string_literal] = STATE(379), - [sym_comment] = STATE(24), - [sym_identifier] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_func] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(258), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(244), - [anon_sym_make] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(248), - [anon_sym_DQUOTE] = ACTIONS(250), - [sym_int_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_imaginary_literal] = ACTIONS(248), - [sym_rune_literal] = ACTIONS(248), - [sym_nil] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_iota] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - }, - [25] = { - [sym_expression_list] = STATE(765), - [sym_parenthesized_type] = STATE(1279), - [sym__simple_type] = STATE(1279), - [sym_generic_type] = STATE(1087), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1087), - [sym_implicit_length_array_type] = STATE(1142), - [sym_slice_type] = STATE(1087), - [sym_struct_type] = STATE(1087), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1087), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym__simple_statement] = STATE(1228), - [sym_send_statement] = STATE(1144), - [sym_inc_statement] = STATE(1144), - [sym_dec_statement] = STATE(1144), - [sym_assignment_statement] = STATE(1144), - [sym_short_var_declaration] = STATE(1144), - [sym__expression] = STATE(339), - [sym_parenthesized_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_selector_expression] = STATE(379), - [sym_index_expression] = STATE(379), - [sym_slice_expression] = STATE(379), - [sym_type_assertion_expression] = STATE(379), - [sym_type_conversion_expression] = STATE(379), - [sym_composite_literal] = STATE(379), - [sym_func_literal] = STATE(379), - [sym_unary_expression] = STATE(379), - [sym_binary_expression] = STATE(379), - [sym_qualified_type] = STATE(899), - [sym_interpreted_string_literal] = STATE(379), - [sym_comment] = STATE(25), - [sym_identifier] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_func] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(244), - [anon_sym_make] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(248), - [anon_sym_DQUOTE] = ACTIONS(250), - [sym_int_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_imaginary_literal] = ACTIONS(248), - [sym_rune_literal] = ACTIONS(248), - [sym_nil] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_iota] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - }, - [26] = { - [sym_expression_list] = STATE(765), - [sym_parenthesized_type] = STATE(1279), - [sym__simple_type] = STATE(1279), - [sym_generic_type] = STATE(1087), - [sym_pointer_type] = STATE(823), - [sym_array_type] = STATE(1087), - [sym_implicit_length_array_type] = STATE(1142), - [sym_slice_type] = STATE(1087), - [sym_struct_type] = STATE(1087), - [sym_interface_type] = STATE(823), - [sym_map_type] = STATE(1087), - [sym_channel_type] = STATE(823), - [sym_function_type] = STATE(823), - [sym__simple_statement] = STATE(1201), - [sym_send_statement] = STATE(1144), - [sym_inc_statement] = STATE(1144), - [sym_dec_statement] = STATE(1144), - [sym_assignment_statement] = STATE(1144), - [sym_short_var_declaration] = STATE(1144), - [sym__expression] = STATE(339), - [sym_parenthesized_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_selector_expression] = STATE(379), - [sym_index_expression] = STATE(379), - [sym_slice_expression] = STATE(379), - [sym_type_assertion_expression] = STATE(379), - [sym_type_conversion_expression] = STATE(379), - [sym_composite_literal] = STATE(379), - [sym_func_literal] = STATE(379), - [sym_unary_expression] = STATE(379), - [sym_binary_expression] = STATE(379), - [sym_qualified_type] = STATE(899), - [sym_interpreted_string_literal] = STATE(379), - [sym_comment] = STATE(26), - [sym_identifier] = ACTIONS(230), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_func] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(262), - [anon_sym_interface] = ACTIONS(37), - [anon_sym_map] = ACTIONS(39), - [anon_sym_chan] = ACTIONS(41), - [anon_sym_LT_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(244), - [anon_sym_make] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(248), - [anon_sym_DQUOTE] = ACTIONS(250), - [sym_int_literal] = ACTIONS(252), - [sym_float_literal] = ACTIONS(252), - [sym_imaginary_literal] = ACTIONS(248), - [sym_rune_literal] = ACTIONS(248), - [sym_nil] = ACTIONS(252), - [sym_true] = ACTIONS(252), - [sym_false] = ACTIONS(252), - [sym_iota] = ACTIONS(252), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_SLASH2] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_parenthesized_expression] = STATE(362), + [sym_call_expression] = STATE(362), + [sym_selector_expression] = STATE(362), + [sym_index_expression] = STATE(362), + [sym_slice_expression] = STATE(362), + [sym_type_assertion_expression] = STATE(362), + [sym_type_conversion_expression] = STATE(362), + [sym_composite_literal] = STATE(362), + [sym_func_literal] = STATE(362), + [sym_unary_expression] = STATE(362), + [sym_binary_expression] = STATE(362), + [sym_qualified_type] = STATE(947), + [sym_interpreted_string_literal] = STATE(362), + [sym_identifier] = ACTIONS(226), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_LPAREN] = ACTIONS(230), + [anon_sym_func] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(234), + [anon_sym_struct] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_interface] = ACTIONS(33), + [anon_sym_map] = ACTIONS(35), + [anon_sym_chan] = ACTIONS(37), + [anon_sym_LT_DASH] = ACTIONS(236), + [anon_sym_range] = ACTIONS(238), + [anon_sym_new] = ACTIONS(240), + [anon_sym_make] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(242), + [anon_sym_DASH] = ACTIONS(242), + [anon_sym_BANG] = ACTIONS(242), + [anon_sym_CARET] = ACTIONS(242), + [anon_sym_AMP] = ACTIONS(242), + [sym_raw_string_literal] = ACTIONS(244), + [anon_sym_DQUOTE] = ACTIONS(246), + [sym_int_literal] = ACTIONS(248), + [sym_float_literal] = ACTIONS(248), + [sym_imaginary_literal] = ACTIONS(244), + [sym_rune_literal] = ACTIONS(244), + [sym_nil] = ACTIONS(248), + [sym_true] = ACTIONS(248), + [sym_false] = ACTIONS(248), + [sym_iota] = ACTIONS(248), + [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 21, + [0] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(270), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(274), 1, - anon_sym_LBRACK, - ACTIONS(276), 1, - anon_sym_STAR, - ACTIONS(278), 1, - anon_sym_struct, - ACTIONS(280), 1, - anon_sym_LBRACE, - ACTIONS(282), 1, - anon_sym_interface, - ACTIONS(284), 1, - anon_sym_map, - ACTIONS(286), 1, - anon_sym_chan, - ACTIONS(288), 1, - anon_sym_LT_DASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(27), 1, sym_comment, - STATE(238), 1, - sym_qualified_type, - STATE(270), 1, - sym_block, - ACTIONS(264), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(237), 2, - sym_parameter_list, - sym__simple_type, - STATE(246), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - ACTIONS(268), 34, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_const, - anon_sym_var, - anon_sym_type, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [107] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(270), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(274), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(276), 1, - anon_sym_STAR, - ACTIONS(278), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(280), 1, - anon_sym_LBRACE, - ACTIONS(282), 1, - anon_sym_interface, - ACTIONS(284), 1, - anon_sym_map, - ACTIONS(286), 1, - anon_sym_chan, - ACTIONS(288), 1, - anon_sym_LT_DASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(28), 1, - sym_comment, - STATE(238), 1, - sym_qualified_type, - STATE(279), 1, - sym_block, - ACTIONS(294), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(240), 2, - sym_parameter_list, - sym__simple_type, - STATE(246), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - ACTIONS(296), 34, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_const, - anon_sym_var, - anon_sym_type, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [214] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(238), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(29), 1, - sym_comment, - STATE(304), 1, + ACTIONS(250), 1, + anon_sym_LBRACE, + STATE(324), 1, sym__expression, - STATE(768), 1, + STATE(765), 1, sym_expression_list, - STATE(899), 1, + STATE(947), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1159), 1, sym_implicit_length_array_type, - STATE(1212), 1, + STATE(1193), 1, + sym__type_switch_header, + STATE(1194), 1, sym__simple_statement, - ACTIONS(244), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1144), 5, + STATE(1143), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, sym_assignment_statement, sym_short_var_declaration, - ACTIONS(252), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10719,172 +9922,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [337] = 21, + [120] = 27, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(270), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(274), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(276), 1, - anon_sym_STAR, - ACTIONS(278), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(280), 1, - anon_sym_LBRACE, - ACTIONS(282), 1, - anon_sym_interface, - ACTIONS(284), 1, - anon_sym_map, - ACTIONS(286), 1, - anon_sym_chan, - ACTIONS(288), 1, - anon_sym_LT_DASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(30), 1, - sym_comment, - STATE(238), 1, - sym_qualified_type, - STATE(249), 1, - sym_block, - ACTIONS(298), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(239), 2, - sym_parameter_list, - sym__simple_type, - STATE(246), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - ACTIONS(300), 34, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_const, - anon_sym_var, - anon_sym_type, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [444] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(302), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(304), 1, - anon_sym_LF, - ACTIONS(308), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(310), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(312), 1, - anon_sym_LBRACK, - ACTIONS(314), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(316), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(324), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(31), 1, - sym_comment, - STATE(466), 1, + ACTIONS(252), 1, + anon_sym_LBRACE, + STATE(343), 1, sym__expression, - STATE(931), 1, - sym_qualified_type, - STATE(941), 1, + STATE(766), 1, sym_expression_list, - STATE(1170), 1, + STATE(947), 1, + sym_qualified_type, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + STATE(1199), 1, + sym__simple_statement, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(306), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(823), 4, + ACTIONS(244), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(320), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 9, - sym_raw_string_literal, + STATE(1143), 5, + sym_send_statement, + sym_inc_statement, + sym_dec_statement, + sym_assignment_statement, + sym_short_var_declaration, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10897,173 +10012,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [564] = 19, + [237] = 27, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(328), 1, - sym_identifier, - ACTIONS(333), 1, - anon_sym_LPAREN, - ACTIONS(336), 1, - anon_sym_func, - ACTIONS(339), 1, - anon_sym_LBRACK, - ACTIONS(342), 1, - anon_sym_STAR, - ACTIONS(345), 1, - anon_sym_struct, - ACTIONS(348), 1, - anon_sym_interface, - ACTIONS(351), 1, - anon_sym_map, - ACTIONS(354), 1, - anon_sym_chan, - ACTIONS(357), 1, - anon_sym_LT_DASH, - STATE(32), 1, sym_comment, - STATE(238), 1, - sym_qualified_type, - ACTIONS(326), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(278), 2, - sym_parameter_list, - sym__simple_type, - STATE(246), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - ACTIONS(331), 35, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_const, - anon_sym_var, - anon_sym_type, - anon_sym_LBRACE, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [666] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(364), 1, - anon_sym_COMMA, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(372), 1, - anon_sym_RBRACE, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(33), 1, - sym_comment, - STATE(556), 1, + ACTIONS(254), 1, + anon_sym_LBRACE, + STATE(343), 1, sym__expression, - STATE(799), 1, + STATE(766), 1, + sym_expression_list, + STATE(947), 1, sym_qualified_type, - STATE(957), 1, - sym_literal_element, - STATE(1112), 1, - sym_keyed_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1205), 1, + sym__simple_statement, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + STATE(1143), 5, + sym_send_statement, + sym_inc_statement, + sym_dec_statement, + sym_assignment_statement, + sym_short_var_declaration, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11076,90 +10102,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [794] = 32, + [354] = 27, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - ACTIONS(386), 1, - anon_sym_COMMA, - ACTIONS(388), 1, - anon_sym_RBRACE, - STATE(34), 1, - sym_comment, - STATE(556), 1, + ACTIONS(256), 1, + anon_sym_LBRACE, + STATE(343), 1, sym__expression, - STATE(799), 1, + STATE(766), 1, + sym_expression_list, + STATE(947), 1, sym_qualified_type, - STATE(990), 1, - sym_literal_element, - STATE(1049), 1, - sym_keyed_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1211), 1, + sym__simple_statement, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + STATE(1143), 5, + sym_send_statement, + sym_inc_statement, + sym_dec_statement, + sym_assignment_statement, + sym_short_var_declaration, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11172,90 +10192,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [922] = 32, + [471] = 27, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - ACTIONS(390), 1, - anon_sym_COMMA, - ACTIONS(392), 1, - anon_sym_RBRACE, - STATE(35), 1, - sym_comment, - STATE(556), 1, + ACTIONS(258), 1, + anon_sym_LBRACE, + STATE(343), 1, sym__expression, - STATE(799), 1, + STATE(766), 1, + sym_expression_list, + STATE(947), 1, sym_qualified_type, - STATE(995), 1, - sym_literal_element, - STATE(1061), 1, - sym_keyed_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1216), 1, + sym__simple_statement, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, - sym_int_literal, - sym_float_literal, - sym_nil, + STATE(1143), 5, + sym_send_statement, + sym_inc_statement, + sym_dec_statement, + sym_assignment_statement, + sym_short_var_declaration, + ACTIONS(248), 6, + sym_int_literal, + sym_float_literal, + sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11268,186 +10282,242 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1050] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(360), 1, + [588] = 18, + ACTIONS(262), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(270), 1, + anon_sym_LBRACK, + ACTIONS(272), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, + ACTIONS(284), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(394), 1, - anon_sym_COMMA, - ACTIONS(396), 1, - anon_sym_RBRACE, - STATE(36), 1, + ACTIONS(286), 1, sym_comment, - STATE(556), 1, - sym__expression, - STATE(799), 1, + STATE(241), 1, sym_qualified_type, - STATE(960), 1, - sym_literal_element, - STATE(1108), 1, - sym_keyed_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, - sym_implicit_length_array_type, - ACTIONS(376), 2, - anon_sym_new, - anon_sym_make, - STATE(1275), 2, - sym_parenthesized_type, + STATE(256), 1, + sym_block, + ACTIONS(260), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(240), 2, + sym_parameter_list, sym__simple_type, - ACTIONS(380), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, + STATE(253), 9, + sym_generic_type, sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, sym_interface_type, + sym_map_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(264), 34, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_const, + anon_sym_var, + anon_sym_type, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [686] = 18, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_func, + ACTIONS(270), 1, + anon_sym_LBRACK, + ACTIONS(272), 1, + anon_sym_STAR, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, + ACTIONS(284), 1, + anon_sym_LT_DASH, + ACTIONS(286), 1, + sym_comment, + STATE(241), 1, + sym_qualified_type, + STATE(252), 1, + sym_block, + ACTIONS(288), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(239), 2, + sym_parameter_list, + sym__simple_type, + STATE(253), 9, sym_generic_type, + sym_pointer_type, sym_array_type, sym_slice_type, sym_struct_type, + sym_interface_type, sym_map_type, - ACTIONS(384), 6, + sym_channel_type, + sym_function_type, + ACTIONS(290), 34, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_const, + anon_sym_var, + anon_sym_type, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + sym_raw_string_literal, + anon_sym_DQUOTE, sym_int_literal, sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [1178] = 32, + [784] = 26, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - ACTIONS(398), 1, - anon_sym_COMMA, - ACTIONS(400), 1, - anon_sym_RBRACE, - STATE(37), 1, - sym_comment, - STATE(556), 1, + STATE(305), 1, sym__expression, - STATE(799), 1, + STATE(768), 1, + sym_expression_list, + STATE(947), 1, sym_qualified_type, - STATE(978), 1, - sym_literal_element, - STATE(1075), 1, - sym_keyed_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1202), 1, + sym__simple_statement, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + STATE(1143), 5, + sym_send_statement, + sym_inc_statement, + sym_dec_statement, + sym_assignment_statement, + sym_short_var_declaration, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11460,90 +10530,164 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1306] = 32, + [898] = 18, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(266), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_func, + ACTIONS(270), 1, + anon_sym_LBRACK, + ACTIONS(272), 1, + anon_sym_STAR, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, + ACTIONS(284), 1, + anon_sym_LT_DASH, + ACTIONS(286), 1, + sym_comment, + STATE(241), 1, + sym_qualified_type, + STATE(279), 1, + sym_block, + ACTIONS(292), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(242), 2, + sym_parameter_list, + sym__simple_type, + STATE(253), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + ACTIONS(294), 34, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_const, + anon_sym_var, + anon_sym_type, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [996] = 29, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(300), 1, + anon_sym_COMMA, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(308), 1, + anon_sym_RBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(402), 1, - anon_sym_COMMA, - ACTIONS(404), 1, - anon_sym_RBRACE, - STATE(38), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(963), 1, + STATE(967), 1, sym_literal_element, - STATE(1106), 1, - sym_keyed_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1092), 1, + sym_keyed_element, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11556,88 +10700,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1434] = 31, + [1115] = 29, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(322), 1, + anon_sym_COMMA, + ACTIONS(324), 1, anon_sym_RBRACE, - STATE(39), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(986), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, - sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1102), 1, sym_keyed_element, - ACTIONS(376), 2, + STATE(1138), 1, + sym_implicit_length_array_type, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11650,88 +10790,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1559] = 31, + [1234] = 29, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(408), 1, + ACTIONS(326), 1, + anon_sym_COMMA, + ACTIONS(328), 1, anon_sym_RBRACE, - STATE(40), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(994), 1, sym_literal_element, - STATE(1118), 1, + STATE(1059), 1, + sym_keyed_element, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, - sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11744,88 +10880,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1684] = 31, + [1353] = 29, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(410), 1, + ACTIONS(330), 1, + anon_sym_COMMA, + ACTIONS(332), 1, anon_sym_RBRACE, - STATE(41), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(961), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, - sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1076), 1, sym_keyed_element, - ACTIONS(376), 2, + STATE(1138), 1, + sym_implicit_length_array_type, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11838,88 +10970,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1809] = 31, + [1472] = 29, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(412), 1, + ACTIONS(334), 1, + anon_sym_COMMA, + ACTIONS(336), 1, anon_sym_RBRACE, - STATE(42), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(990), 1, sym_literal_element, - STATE(1118), 1, + STATE(1035), 1, + sym_keyed_element, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, - sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11932,88 +11060,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1934] = 31, + [1591] = 29, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(414), 1, + ACTIONS(338), 1, + anon_sym_COMMA, + ACTIONS(340), 1, anon_sym_RBRACE, - STATE(43), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(956), 1, sym_literal_element, - STATE(1118), 1, + STATE(1067), 1, + sym_keyed_element, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, - sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12026,88 +11150,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2059] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [1710] = 25, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(286), 1, + sym_comment, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(344), 1, + anon_sym_LF, + ACTIONS(348), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, anon_sym_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(356), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(364), 1, anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_RBRACE, - STATE(44), 1, - sym_comment, - STATE(556), 1, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1021), 1, - sym_literal_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, + STATE(931), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - STATE(1169), 1, - sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, + ACTIONS(346), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(360), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 9, + sym_raw_string_literal, sym_int_literal, sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12120,182 +11236,159 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2184] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + [1821] = 16, + ACTIONS(286), 1, + sym_comment, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(373), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_func, + ACTIONS(379), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(382), 1, + anon_sym_STAR, + ACTIONS(385), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(388), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(391), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(394), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(397), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_RBRACE, - STATE(45), 1, - sym_comment, - STATE(556), 1, - sym__expression, - STATE(799), 1, + STATE(241), 1, sym_qualified_type, - STATE(1021), 1, - sym_literal_element, - STATE(1118), 1, - sym_literal_value, - STATE(1157), 1, - sym_implicit_length_array_type, - STATE(1169), 1, - sym_keyed_element, - ACTIONS(376), 2, - anon_sym_new, - anon_sym_make, - STATE(1275), 2, - sym_parenthesized_type, + ACTIONS(366), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(262), 2, + sym_parameter_list, sym__simple_type, - ACTIONS(380), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, + STATE(253), 9, + sym_generic_type, sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, sym_interface_type, + sym_map_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(371), 35, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_const, + anon_sym_var, + anon_sym_type, + anon_sym_LBRACE, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(384), 6, + sym_raw_string_literal, + anon_sym_DQUOTE, sym_int_literal, sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [2309] = 31, + [1914] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(420), 1, + ACTIONS(400), 1, anon_sym_RBRACE, - STATE(46), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(1053), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1177), 1, sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12308,88 +11401,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2434] = 31, + [2030] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(422), 1, + ACTIONS(402), 1, anon_sym_RBRACE, - STATE(47), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(1053), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1177), 1, sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12402,88 +11489,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2559] = 31, + [2146] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(424), 1, + ACTIONS(404), 1, anon_sym_RBRACE, - STATE(48), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(1053), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1177), 1, sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12496,88 +11577,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2684] = 31, + [2262] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(426), 1, + ACTIONS(406), 1, anon_sym_RBRACE, - STATE(49), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(1053), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1177), 1, sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12590,88 +11665,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2809] = 31, + [2378] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(428), 1, + ACTIONS(408), 1, anon_sym_RBRACE, - STATE(50), 1, - sym_comment, - STATE(556), 1, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(1053), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1177), 1, sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12684,86 +11753,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2934] = 30, + [2494] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(51), 1, - sym_comment, - STATE(556), 1, + ACTIONS(410), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1021), 1, + STATE(1053), 1, sym_literal_element, - STATE(1118), 1, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1169), 1, + STATE(1177), 1, sym_keyed_element, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12776,84 +11841,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3056] = 29, + [2610] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(52), 1, - sym_comment, - STATE(556), 1, + ACTIONS(412), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1118), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, sym_literal_value, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1164), 1, - sym_literal_element, - ACTIONS(376), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12866,83 +11929,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3175] = 28, + [2726] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(432), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(53), 1, - sym_comment, - STATE(470), 1, + ACTIONS(414), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(934), 1, + STATE(794), 1, sym_qualified_type, - STATE(1172), 1, - sym_expression_list, - STATE(1174), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, + sym_literal_value, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1222), 2, - sym_send_statement, - sym_receive_statement, - STATE(1246), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12955,82 +12017,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3292] = 28, + [2842] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(452), 1, - anon_sym_RPAREN, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(54), 1, - sym_comment, - STATE(575), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(416), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, + sym_literal_value, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13043,82 +12105,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3408] = 28, + [2958] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(460), 1, - anon_sym_RPAREN, - STATE(55), 1, - sym_comment, - STATE(575), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(418), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, + sym_literal_value, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13131,82 +12193,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3524] = 28, + [3074] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(462), 1, - anon_sym_RPAREN, - STATE(56), 1, - sym_comment, - STATE(516), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(420), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1101), 1, - sym_variadic_argument, - STATE(1157), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, + sym_literal_value, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13219,82 +12281,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3640] = 28, + [3190] = 28, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(464), 1, - anon_sym_RPAREN, - STATE(57), 1, - sym_comment, - STATE(575), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(422), 1, + anon_sym_RBRACE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, + sym_literal_value, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13307,82 +12369,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3756] = 28, + [3306] = 27, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(466), 1, - anon_sym_RPAREN, - STATE(58), 1, - sym_comment, - STATE(575), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1053), 1, + sym_literal_element, + STATE(1069), 1, + sym_literal_value, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + STATE(1177), 1, + sym_keyed_element, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13395,82 +12455,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3872] = 28, + [3419] = 26, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(468), 1, - anon_sym_RPAREN, - STATE(59), 1, - sym_comment, - STATE(495), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(589), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1052), 1, - sym_variadic_argument, - STATE(1157), 1, + STATE(1069), 1, + sym_literal_value, + STATE(1115), 1, + sym_literal_element, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13483,82 +12539,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3988] = 28, + [3529] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(470), 1, - anon_sym_RPAREN, - STATE(60), 1, - sym_comment, - STATE(575), 1, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(474), 1, sym__expression, - STATE(799), 1, + STATE(884), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1160), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + STATE(1173), 1, + sym_expression_list, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1195), 2, + sym_send_statement, + sym_receive_statement, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1074), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(553), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13571,82 +12622,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4104] = 28, + [3637] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(446), 1, + anon_sym_RPAREN, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(472), 1, - anon_sym_RBRACK, - ACTIONS(474), 1, - anon_sym_DOT_DOT_DOT, - STATE(61), 1, - sym_comment, - STATE(649), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13659,82 +12704,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4220] = 28, + [3744] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, ACTIONS(454), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(458), 1, + anon_sym_LBRACE, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(476), 1, - anon_sym_RPAREN, - STATE(62), 1, - sym_comment, - STATE(575), 1, + STATE(506), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + STATE(1192), 1, + sym_expression_list, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13747,82 +12786,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4336] = 28, + [3851] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(478), 1, + ACTIONS(464), 1, anon_sym_RPAREN, - STATE(63), 1, - sym_comment, - STATE(507), 1, + STATE(514), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1086), 1, + STATE(1062), 1, sym_variadic_argument, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13835,82 +12868,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4452] = 28, + [3958] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(480), 1, + ACTIONS(466), 1, anon_sym_RPAREN, - STATE(64), 1, - sym_comment, - STATE(575), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, + STATE(1172), 1, sym_variadic_argument, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13923,82 +12950,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4568] = 28, + [4065] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(482), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(484), 1, - anon_sym_RBRACK, - ACTIONS(486), 1, + ACTIONS(448), 1, anon_sym_STAR, - STATE(65), 1, - sym_comment, - STATE(657), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(468), 1, + anon_sym_RPAREN, + STATE(522), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1077), 1, - sym_parameter_declaration, - STATE(1157), 1, + STATE(1068), 1, + sym_variadic_argument, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1071), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14011,82 +13032,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4684] = 28, + [4172] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(488), 1, + ACTIONS(470), 1, anon_sym_RPAREN, - STATE(66), 1, - sym_comment, - STATE(575), 1, + STATE(494), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, - sym_implicit_length_array_type, - STATE(1162), 1, + STATE(1054), 1, sym_variadic_argument, - ACTIONS(376), 2, + STATE(1138), 1, + sym_implicit_length_array_type, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14099,82 +13114,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4800] = 28, + [4279] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(490), 1, + ACTIONS(472), 1, anon_sym_RPAREN, - STATE(67), 1, - sym_comment, - STATE(575), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, + STATE(1172), 1, sym_variadic_argument, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14187,82 +13196,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4916] = 28, + [4386] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(492), 1, + ACTIONS(474), 1, anon_sym_RPAREN, - STATE(68), 1, - sym_comment, - STATE(518), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1105), 1, - sym_variadic_argument, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14275,82 +13278,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5032] = 28, + [4493] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(494), 1, + ACTIONS(476), 1, anon_sym_RPAREN, - STATE(69), 1, - sym_comment, - STATE(508), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1011), 1, - sym_variadic_argument, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14363,82 +13360,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5148] = 28, + [4600] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(496), 1, + ACTIONS(478), 1, anon_sym_RPAREN, - STATE(70), 1, - sym_comment, - STATE(575), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, + STATE(1172), 1, sym_variadic_argument, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14451,170 +13442,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5264] = 28, + [4707] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(498), 1, - anon_sym_range, - STATE(71), 1, sym_comment, - STATE(513), 1, - sym__expression, - STATE(799), 1, - sym_qualified_type, - STATE(1129), 1, - sym_expression_list, - STATE(1157), 1, - sym_implicit_length_array_type, - ACTIONS(376), 2, - anon_sym_new, - anon_sym_make, - STATE(1275), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(380), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, - sym_pointer_type, - sym_interface_type, - sym_channel_type, - sym_function_type, - ACTIONS(378), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - STATE(849), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(384), 6, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - STATE(452), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [5380] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(498), 1, - anon_sym_range, - STATE(72), 1, - sym_comment, - STATE(513), 1, + ACTIONS(480), 1, + anon_sym_RBRACK, + ACTIONS(482), 1, + anon_sym_DOT_DOT_DOT, + STATE(653), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1128), 1, - sym_expression_list, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14627,82 +13524,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5496] = 28, + [4814] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(500), 1, + ACTIONS(484), 1, anon_sym_RPAREN, - STATE(73), 1, - sym_comment, - STATE(575), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, + STATE(1172), 1, sym_variadic_argument, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14715,82 +13606,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5612] = 28, + [4921] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(502), 1, + ACTIONS(486), 1, anon_sym_RPAREN, - STATE(74), 1, - sym_comment, - STATE(575), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, + STATE(1172), 1, sym_variadic_argument, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14803,82 +13688,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5728] = 28, + [5028] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(506), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(508), 1, - anon_sym_LBRACE, - ACTIONS(510), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(75), 1, - sym_comment, - STATE(523), 1, + ACTIONS(488), 1, + anon_sym_RPAREN, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1217), 1, - sym_expression_list, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14891,82 +13770,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5844] = 28, + [5135] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(490), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(492), 1, + anon_sym_RBRACK, + ACTIONS(494), 1, anon_sym_STAR, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(514), 1, - anon_sym_RPAREN, - STATE(76), 1, - sym_comment, - STATE(525), 1, + STATE(639), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1109), 1, - sym_variadic_argument, - STATE(1157), 1, + STATE(1020), 1, + sym_parameter_declaration, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1112), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14979,80 +13852,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5960] = 27, + [5242] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(472), 1, - anon_sym_RBRACK, - STATE(77), 1, - sym_comment, - STATE(649), 1, + ACTIONS(496), 1, + anon_sym_RPAREN, + STATE(535), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1096), 1, + sym_variadic_argument, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15065,80 +13934,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6073] = 27, + [5349] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(518), 1, - anon_sym_COLON, - STATE(78), 1, - sym_comment, - STATE(597), 1, + ACTIONS(448), 1, + anon_sym_STAR, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(498), 1, + anon_sym_RPAREN, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15151,80 +14016,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6186] = 27, + [5456] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(520), 1, - anon_sym_RBRACK, - STATE(79), 1, - sym_comment, - STATE(605), 1, + ACTIONS(500), 1, + anon_sym_RPAREN, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15237,80 +14098,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6299] = 27, + [5563] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(522), 1, - anon_sym_RBRACK, - STATE(80), 1, - sym_comment, - STATE(654), 1, + ACTIONS(502), 1, + anon_sym_RPAREN, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15323,80 +14180,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6412] = 27, + [5670] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(524), 1, - anon_sym_RBRACK, - STATE(81), 1, - sym_comment, - STATE(622), 1, + ACTIONS(504), 1, + anon_sym_range, + STATE(524), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1122), 1, + sym_expression_list, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15409,80 +14262,76 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6525] = 27, + [5777] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(526), 1, - anon_sym_RBRACK, - STATE(82), 1, - sym_comment, - STATE(625), 1, + ACTIONS(506), 1, + anon_sym_RPAREN, + STATE(518), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1038), 1, + sym_variadic_argument, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15495,80 +14344,158 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6638] = 27, + [5884] = 25, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, + anon_sym_STAR, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + anon_sym_range, + STATE(524), 1, + sym__expression, + STATE(794), 1, + sym_qualified_type, + STATE(1130), 1, + sym_expression_list, + STATE(1138), 1, + sym_implicit_length_array_type, + ACTIONS(312), 2, + anon_sym_new, + anon_sym_make, + STATE(1261), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(316), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(314), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(867), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(320), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(436), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [5991] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(528), 1, + ACTIONS(508), 1, anon_sym_RPAREN, - STATE(83), 1, - sym_comment, - STATE(601), 1, + STATE(511), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1095), 1, + sym_variadic_argument, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15581,80 +14508,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6751] = 27, + [6098] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, - anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(84), 1, - sym_comment, - STATE(466), 1, + ACTIONS(494), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(512), 1, + anon_sym_COLON, + STATE(605), 1, sym__expression, - STATE(924), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15667,80 +14588,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6864] = 27, + [6202] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(542), 1, - anon_sym_RBRACK, - STATE(85), 1, - sym_comment, - STATE(626), 1, + STATE(524), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1122), 1, + sym_expression_list, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15753,80 +14668,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6977] = 27, + [6306] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, ACTIONS(454), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(544), 1, - anon_sym_RPAREN, - STATE(86), 1, - sym_comment, - STATE(601), 1, + STATE(556), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1130), 1, + sym_expression_list, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15839,80 +14748,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7090] = 27, + [6410] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(87), 1, - sym_comment, - STATE(466), 1, + ACTIONS(514), 1, + anon_sym_RBRACK, + STATE(648), 1, sym__expression, - STATE(923), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15925,80 +14828,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7203] = 27, + [6514] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(88), 1, - sym_comment, - STATE(544), 1, + STATE(575), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1128), 1, + STATE(1122), 1, sym_expression_list, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16011,80 +14908,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7316] = 27, + [6618] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(89), 1, - sym_comment, - STATE(513), 1, + STATE(524), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1226), 1, + STATE(1198), 1, sym_expression_list, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16097,80 +14988,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7429] = 27, + [6722] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(546), 1, - anon_sym_SEMI, - STATE(90), 1, - sym_comment, - STATE(656), 1, + ACTIONS(516), 1, + anon_sym_RBRACK, + STATE(624), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16183,80 +15068,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7542] = 27, + [6826] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(548), 1, - anon_sym_RPAREN, - STATE(91), 1, - sym_comment, - STATE(601), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(518), 1, + anon_sym_SEMI, + STATE(651), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16269,80 +15148,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7655] = 27, + [6930] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, - anon_sym_DQUOTE, - STATE(92), 1, - sym_comment, - STATE(466), 1, + ACTIONS(520), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(938), 1, - sym_expression_list, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16355,80 +15228,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7768] = 27, + [7034] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(93), 1, - sym_comment, - STATE(466), 1, + ACTIONS(480), 1, + anon_sym_RBRACK, + STATE(653), 1, sym__expression, - STATE(881), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16441,80 +15308,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7881] = 27, + [7138] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(522), 1, anon_sym_RPAREN, - STATE(94), 1, - sym_comment, - STATE(601), 1, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16527,80 +15388,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7994] = 27, + [7242] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(552), 1, + ACTIONS(524), 1, anon_sym_RBRACK, - STATE(95), 1, - sym_comment, - STATE(600), 1, + STATE(611), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16613,166 +15468,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8107] = 27, + [7346] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(554), 1, - anon_sym_RBRACK, - STATE(96), 1, - sym_comment, - STATE(606), 1, - sym__expression, - STATE(799), 1, - sym_qualified_type, - STATE(1157), 1, - sym_implicit_length_array_type, - ACTIONS(376), 2, - anon_sym_new, - anon_sym_make, - STATE(1275), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(380), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, - sym_pointer_type, - sym_interface_type, - sym_channel_type, - sym_function_type, - ACTIONS(378), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - STATE(849), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(384), 6, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - STATE(452), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [8220] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(368), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(97), 1, - sym_comment, - STATE(513), 1, + ACTIONS(526), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1128), 1, - sym_expression_list, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16785,80 +15548,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8333] = 27, + [7450] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(556), 1, + ACTIONS(528), 1, anon_sym_RBRACK, - STATE(98), 1, - sym_comment, - STATE(616), 1, + STATE(613), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16871,80 +15628,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8446] = 27, + [7554] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(558), 1, + ACTIONS(530), 1, anon_sym_RPAREN, - STATE(99), 1, - sym_comment, - STATE(601), 1, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16957,80 +15708,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8559] = 27, + [7658] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(560), 1, + ACTIONS(532), 1, anon_sym_RBRACK, - STATE(100), 1, - sym_comment, - STATE(602), 1, + STATE(655), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17043,80 +15788,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8672] = 27, + [7762] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(494), 1, anon_sym_STAR, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(562), 1, - anon_sym_RPAREN, - STATE(101), 1, - sym_comment, - STATE(601), 1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(534), 1, + anon_sym_COLON, + STATE(603), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17129,80 +15868,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8785] = 27, + [7866] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(102), 1, - sym_comment, - STATE(466), 1, + ACTIONS(536), 1, + anon_sym_RBRACK, + STATE(610), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(942), 1, - sym_expression_list, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17215,80 +15948,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8898] = 27, + [7970] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(103), 1, - sym_comment, - STATE(466), 1, + ACTIONS(538), 1, + anon_sym_RBRACK, + STATE(619), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(943), 1, - sym_expression_list, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17301,80 +16028,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9011] = 27, + [8074] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, + ACTIONS(304), 1, + anon_sym_STAR, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_COLON, - STATE(104), 1, - sym_comment, - STATE(624), 1, + ACTIONS(492), 1, + anon_sym_RBRACK, + STATE(639), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17387,80 +16108,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9124] = 27, + [8178] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(566), 1, - anon_sym_RBRACK, - STATE(105), 1, - sym_comment, - STATE(614), 1, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(919), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17473,80 +16188,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9237] = 27, + [8282] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(568), 1, - anon_sym_RPAREN, - STATE(106), 1, - sym_comment, - STATE(601), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(918), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17559,80 +16268,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9350] = 27, + [8386] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(506), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(107), 1, - sym_comment, - STATE(543), 1, + ACTIONS(552), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1128), 1, - sym_expression_list, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17645,80 +16348,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9463] = 27, + [8490] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(108), 1, - sym_comment, - STATE(543), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(554), 1, + anon_sym_RBRACK, + STATE(609), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1129), 1, - sym_expression_list, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17731,80 +16428,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9576] = 27, + [8594] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(570), 1, + ACTIONS(556), 1, anon_sym_SEMI, - STATE(109), 1, - sym_comment, - STATE(633), 1, + STATE(631), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17817,80 +16508,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9689] = 27, + [8698] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, + ACTIONS(304), 1, + anon_sym_STAR, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, - sym_identifier, - ACTIONS(572), 1, - anon_sym_COLON, - STATE(110), 1, - sym_comment, - STATE(618), 1, + ACTIONS(558), 1, + anon_sym_RBRACK, + STATE(602), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17903,80 +16588,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9802] = 27, + [8802] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(522), 1, - anon_sym_RBRACK, - STATE(111), 1, - sym_comment, - STATE(654), 1, + ACTIONS(448), 1, + anon_sym_STAR, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(560), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17989,80 +16668,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9915] = 27, + [8906] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, - anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(112), 1, - sym_comment, - STATE(466), 1, + ACTIONS(494), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(562), 1, + anon_sym_COLON, + STATE(616), 1, sym__expression, - STATE(905), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18075,80 +16748,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10028] = 27, + [9010] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(494), 1, anon_sym_STAR, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(574), 1, - anon_sym_RPAREN, - STATE(113), 1, - sym_comment, - STATE(601), 1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(564), 1, + anon_sym_COLON, + STATE(622), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18161,80 +16828,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10141] = 27, + [9114] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, - anon_sym_RBRACK, - STATE(114), 1, - sym_comment, - STATE(657), 1, + STATE(524), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1130), 1, + sym_expression_list, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18247,80 +16908,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10254] = 27, + [9218] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(115), 1, - sym_comment, - STATE(466), 1, + ACTIONS(566), 1, + anon_sym_RBRACK, + STATE(597), 1, sym__expression, - STATE(896), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18333,80 +16988,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10367] = 27, + [9322] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(576), 1, - anon_sym_RPAREN, - STATE(116), 1, - sym_comment, - STATE(601), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(568), 1, + anon_sym_RBRACK, + STATE(599), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18419,80 +17068,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10480] = 27, + [9426] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(578), 1, - anon_sym_RBRACK, - STATE(117), 1, - sym_comment, - STATE(623), 1, + ACTIONS(570), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18505,80 +17148,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10593] = 27, + [9530] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(580), 1, - anon_sym_RBRACK, - STATE(118), 1, - sym_comment, - STATE(620), 1, + ACTIONS(572), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18591,80 +17228,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10706] = 27, + [9634] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(582), 1, - anon_sym_RPAREN, - STATE(119), 1, - sym_comment, - STATE(601), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(926), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18677,80 +17308,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10819] = 27, + [9738] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(584), 1, - anon_sym_RPAREN, - STATE(120), 1, - sym_comment, - STATE(601), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(885), 1, + sym_expression_list, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18763,80 +17388,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10932] = 27, + [9842] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(586), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comment, - STATE(595), 1, + ACTIONS(574), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18849,80 +17468,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11045] = 27, + [9946] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(374), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, - sym_identifier, - ACTIONS(588), 1, - anon_sym_COLON, - STATE(122), 1, - sym_comment, - STATE(610), 1, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(920), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18935,80 +17548,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11158] = 27, + [10050] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, + ACTIONS(494), 1, anon_sym_STAR, - ACTIONS(516), 1, + ACTIONS(510), 1, sym_identifier, - ACTIONS(590), 1, + ACTIONS(576), 1, anon_sym_COLON, - STATE(123), 1, - sym_comment, - STATE(593), 1, + STATE(606), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19021,80 +17628,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11271] = 27, + [10154] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(592), 1, - anon_sym_COLON, - STATE(124), 1, - sym_comment, - STATE(607), 1, + ACTIONS(448), 1, + anon_sym_STAR, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(578), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(964), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19107,80 +17708,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11384] = 27, + [10258] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(594), 1, - anon_sym_RBRACK, - STATE(125), 1, - sym_comment, - STATE(655), 1, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(936), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19193,80 +17788,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11497] = 27, + [10362] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(494), 1, anon_sym_STAR, - ACTIONS(456), 1, - anon_sym_LT_DASH, - STATE(126), 1, - sym_comment, - STATE(575), 1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(580), 1, + anon_sym_COLON, + STATE(615), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - STATE(1162), 1, - sym_variadic_argument, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19279,80 +17868,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11610] = 27, + [10466] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(127), 1, - sym_comment, - STATE(513), 1, + STATE(556), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1129), 1, + STATE(1122), 1, sym_expression_list, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19365,80 +17948,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11723] = 27, + [10570] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(128), 1, - sym_comment, - STATE(466), 1, + ACTIONS(582), 1, + anon_sym_RBRACK, + STATE(595), 1, sym__expression, - STATE(888), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19451,80 +18028,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11836] = 27, + [10674] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(129), 1, - sym_comment, - STATE(466), 1, + ACTIONS(584), 1, + anon_sym_RBRACK, + STATE(608), 1, sym__expression, - STATE(886), 1, - sym_expression_list, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19537,80 +18108,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11949] = 27, + [10778] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(596), 1, - anon_sym_RPAREN, - STATE(130), 1, - sym_comment, - STATE(601), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(923), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19623,78 +18188,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12062] = 26, + [10882] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, - anon_sym_func, - ACTIONS(598), 1, - sym_identifier, - STATE(131), 1, - sym_comment, - STATE(298), 1, + STATE(468), 1, sym__expression, STATE(895), 1, sym_qualified_type, - STATE(1145), 1, + STATE(921), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19707,78 +18268,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12172] = 26, + [10986] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(132), 1, - sym_comment, - STATE(491), 1, + ACTIONS(586), 1, + anon_sym_RBRACK, + STATE(604), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19791,78 +18348,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12282] = 26, + [11090] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - STATE(133), 1, - sym_comment, - STATE(640), 1, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(953), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19875,78 +18428,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12392] = 26, + [11194] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(506), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - STATE(134), 1, - sym_comment, - STATE(645), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(468), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(949), 1, + sym_expression_list, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19959,78 +18508,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12502] = 26, + [11298] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(135), 1, - sym_comment, - STATE(609), 1, + ACTIONS(588), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20043,78 +18588,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12612] = 26, + [11402] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(136), 1, - sym_comment, - STATE(621), 1, + ACTIONS(590), 1, + anon_sym_RPAREN, + STATE(596), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20127,78 +18668,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12722] = 26, + [11506] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(137), 1, - sym_comment, - STATE(601), 1, + STATE(568), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + STATE(1172), 1, + sym_variadic_argument, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20211,78 +18748,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12832] = 26, + [11610] = 24, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(138), 1, - sym_comment, - STATE(639), 1, + ACTIONS(494), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(514), 1, + anon_sym_RBRACK, + STATE(648), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(959), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20295,78 +18828,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12942] = 26, + [11714] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - STATE(139), 1, - sym_comment, - STATE(554), 1, + ACTIONS(608), 1, + anon_sym_DQUOTE, + STATE(384), 1, sym__expression, - STATE(799), 1, + STATE(916), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20379,78 +18906,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13052] = 26, + [11815] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, - anon_sym_DQUOTE, - STATE(140), 1, - sym_comment, - STATE(388), 1, + STATE(630), 1, sym__expression, - STATE(883), 1, + STATE(794), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20463,78 +18984,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13162] = 26, + [11916] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(27), 1, + anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, + ACTIONS(39), 1, + anon_sym_LT_DASH, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(612), 1, sym_identifier, - ACTIONS(454), 1, - anon_sym_STAR, - ACTIONS(456), 1, - anon_sym_LT_DASH, - STATE(141), 1, - sym_comment, - STATE(545), 1, + STATE(300), 1, sym__expression, - STATE(799), 1, + STATE(903), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1242), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20547,78 +19062,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13272] = 26, + [12017] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, + sym_comment, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, + ACTIONS(178), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(612), 1, sym_identifier, - STATE(142), 1, - sym_comment, - STATE(296), 1, + STATE(298), 1, sym__expression, - STATE(895), 1, + STATE(903), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1242), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20631,78 +19140,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13382] = 26, + [12118] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, - anon_sym_func, - ACTIONS(598), 1, - sym_identifier, - STATE(143), 1, - sym_comment, - STATE(295), 1, + STATE(489), 1, sym__expression, STATE(895), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20715,78 +19218,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13492] = 26, + [12219] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(144), 1, - sym_comment, - STATE(485), 1, + STATE(636), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20799,78 +19296,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13602] = 26, + [12320] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - STATE(145), 1, - sym_comment, - STATE(425), 1, + STATE(477), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20883,78 +19374,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13712] = 26, + [12421] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(27), 1, + anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, + ACTIONS(39), 1, + anon_sym_LT_DASH, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(612), 1, sym_identifier, - ACTIONS(454), 1, - anon_sym_STAR, - ACTIONS(456), 1, - anon_sym_LT_DASH, - STATE(146), 1, - sym_comment, - STATE(564), 1, + STATE(297), 1, sym__expression, - STATE(799), 1, + STATE(903), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1242), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20967,78 +19452,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13822] = 26, + [12522] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, + sym_comment, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, + ACTIONS(178), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(612), 1, sym_identifier, - STATE(147), 1, - sym_comment, - STATE(297), 1, + STATE(296), 1, sym__expression, - STATE(895), 1, + STATE(903), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1242), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21051,78 +19530,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13932] = 26, + [12623] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(27), 1, + anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(148), 1, - sym_comment, - STATE(617), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(612), 1, + sym_identifier, + STATE(295), 1, sym__expression, - STATE(799), 1, + STATE(903), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1242), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21135,78 +19608,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14042] = 26, + [12724] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, - anon_sym_LT_DASH, - ACTIONS(73), 1, - anon_sym_DQUOTE, - ACTIONS(182), 1, + ACTIONS(298), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, sym_identifier, - STATE(149), 1, - sym_comment, - STATE(294), 1, + ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(460), 1, + anon_sym_LT_DASH, + STATE(426), 1, sym__expression, - STATE(895), 1, + STATE(794), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21219,78 +19686,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14152] = 26, + [12825] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, ACTIONS(454), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(460), 1, anon_sym_LT_DASH, - STATE(150), 1, - sym_comment, - STATE(580), 1, + STATE(425), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21303,78 +19764,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14262] = 26, + [12926] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(151), 1, - sym_comment, - STATE(426), 1, + STATE(625), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21387,162 +19842,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14372] = 26, + [13027] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, - anon_sym_STAR, - ACTIONS(534), 1, - anon_sym_LT_DASH, - ACTIONS(540), 1, - anon_sym_DQUOTE, - STATE(152), 1, sym_comment, - STATE(476), 1, - sym__expression, - STATE(931), 1, - sym_qualified_type, - STATE(1170), 1, - sym_implicit_length_array_type, - ACTIONS(318), 2, - anon_sym_new, - anon_sym_make, - STATE(1278), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(538), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, - sym_pointer_type, - sym_interface_type, - sym_channel_type, - sym_function_type, - ACTIONS(536), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - STATE(1022), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(322), 6, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - STATE(534), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [14482] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, anon_sym_STAR, - STATE(153), 1, - sym_comment, - STATE(638), 1, + ACTIONS(460), 1, + anon_sym_LT_DASH, + STATE(563), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1155), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21555,78 +19920,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14592] = 26, + [13128] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, anon_sym_STAR, - STATE(154), 1, - sym_comment, - STATE(635), 1, + ACTIONS(460), 1, + anon_sym_LT_DASH, + STATE(565), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1155), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21639,78 +19998,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14702] = 26, + [13229] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(155), 1, - sym_comment, - STATE(648), 1, + STATE(566), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21723,78 +20076,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14812] = 26, + [13330] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(156), 1, - sym_comment, - STATE(612), 1, + STATE(621), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21807,78 +20154,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14922] = 26, + [13431] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(157), 1, - sym_comment, - STATE(484), 1, + STATE(567), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21891,78 +20232,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15032] = 26, + [13532] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(158), 1, - sym_comment, - STATE(562), 1, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(658), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1151), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21975,78 +20310,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15142] = 26, + [13633] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(159), 1, - sym_comment, - STATE(570), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22059,78 +20388,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15252] = 26, + [13734] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(160), 1, - sym_comment, - STATE(642), 1, + STATE(633), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22143,78 +20466,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15362] = 26, + [13835] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(606), 1, - anon_sym_STAR, - ACTIONS(608), 1, - anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(161), 1, - sym_comment, - STATE(383), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(634), 1, sym__expression, - STATE(883), 1, + STATE(794), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1151), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22227,78 +20544,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15472] = 26, + [13936] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(162), 1, - sym_comment, - STATE(481), 1, + ACTIONS(616), 1, + anon_sym_chan, + STATE(426), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22311,78 +20622,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15582] = 26, + [14037] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(163), 1, - sym_comment, STATE(637), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22395,162 +20700,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15692] = 26, + [14138] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, - anon_sym_STAR, - ACTIONS(510), 1, - anon_sym_LT_DASH, - STATE(164), 1, sym_comment, - STATE(571), 1, - sym__expression, - STATE(799), 1, - sym_qualified_type, - STATE(1157), 1, - sym_implicit_length_array_type, - ACTIONS(376), 2, - anon_sym_new, - anon_sym_make, - STATE(1275), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(380), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(823), 4, - sym_pointer_type, - sym_interface_type, - sym_channel_type, - sym_function_type, - ACTIONS(512), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - STATE(849), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(384), 6, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - STATE(452), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [15802] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, ACTIONS(454), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(460), 1, anon_sym_LT_DASH, - STATE(165), 1, - sym_comment, - STATE(599), 1, + STATE(642), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22563,78 +20778,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15912] = 26, + [14239] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(596), 1, + anon_sym_func, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - STATE(166), 1, - sym_comment, - STATE(478), 1, + STATE(387), 1, sym__expression, - STATE(931), 1, + STATE(916), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22647,78 +20856,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16022] = 26, + [14340] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(167), 1, - sym_comment, - STATE(475), 1, + STATE(635), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22731,78 +20934,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16132] = 26, + [14441] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, - anon_sym_DQUOTE, - STATE(168), 1, - sym_comment, - STATE(474), 1, + ACTIONS(616), 1, + anon_sym_chan, + STATE(426), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22815,78 +21012,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16242] = 26, + [14542] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - STATE(169), 1, - sym_comment, STATE(386), 1, sym__expression, - STATE(883), 1, + STATE(916), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22899,78 +21090,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16352] = 26, + [14643] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(592), 1, + sym_identifier, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - STATE(170), 1, - sym_comment, - STATE(425), 1, + ACTIONS(608), 1, + anon_sym_DQUOTE, + STATE(385), 1, sym__expression, - STATE(799), 1, + STATE(916), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22983,78 +21168,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16462] = 26, + [14744] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(362), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(506), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(622), 1, - anon_sym_chan, - STATE(171), 1, - sym_comment, - STATE(425), 1, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23067,78 +21246,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16572] = 26, + [14845] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - STATE(172), 1, - sym_comment, - STATE(389), 1, + STATE(388), 1, sym__expression, - STATE(883), 1, + STATE(916), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23151,78 +21324,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16682] = 26, + [14946] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - sym_identifier, - ACTIONS(454), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(173), 1, - sym_comment, - STATE(425), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(632), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23235,78 +21402,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16792] = 26, + [15047] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(432), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, - anon_sym_DQUOTE, - STATE(174), 1, - sym_comment, - STATE(487), 1, + STATE(592), 1, sym__expression, - STATE(934), 1, + STATE(794), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23319,78 +21480,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16902] = 26, + [15148] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, - anon_sym_DQUOTE, - STATE(175), 1, - sym_comment, - STATE(473), 1, + STATE(587), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23403,78 +21558,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17012] = 26, + [15249] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(432), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - STATE(176), 1, - sym_comment, - STATE(489), 1, + STATE(383), 1, sym__expression, - STATE(934), 1, + STATE(916), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23487,78 +21636,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17122] = 26, + [15350] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(432), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, - anon_sym_DQUOTE, - STATE(177), 1, - sym_comment, - STATE(488), 1, + STATE(626), 1, sym__expression, - STATE(934), 1, + STATE(794), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23571,78 +21714,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17232] = 26, + [15451] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, - sym_identifier, - ACTIONS(432), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, - anon_sym_DQUOTE, - STATE(178), 1, - sym_comment, - STATE(492), 1, + STATE(596), 1, sym__expression, - STATE(934), 1, + STATE(794), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23655,78 +21792,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17342] = 26, + [15552] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(432), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(179), 1, - sym_comment, - STATE(490), 1, + STATE(640), 1, sym__expression, - STATE(934), 1, + STATE(794), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23739,78 +21870,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17452] = 26, + [15653] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - STATE(180), 1, - sym_comment, - STATE(628), 1, + STATE(384), 1, sym__expression, - STATE(799), 1, + STATE(916), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23823,78 +21948,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17562] = 26, + [15754] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(27), 1, + anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, - sym_identifier, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_func, - ACTIONS(238), 1, - anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(181), 1, - sym_comment, - STATE(341), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(612), 1, + sym_identifier, + STATE(294), 1, sym__expression, - STATE(899), 1, + STATE(903), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23907,78 +22026,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17672] = 26, + [15855] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(238), 1, - anon_sym_STAR, - ACTIONS(240), 1, - anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(182), 1, - sym_comment, - STATE(342), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(629), 1, sym__expression, - STATE(899), 1, + STATE(794), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1151), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23991,78 +22104,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17782] = 26, + [15956] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(238), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(183), 1, - sym_comment, - STATE(346), 1, + STATE(656), 1, sym__expression, - STATE(899), 1, + STATE(794), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24075,78 +22182,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17892] = 26, + [16057] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(184), 1, - sym_comment, - STATE(425), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(627), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24159,78 +22260,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18002] = 26, + [16158] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(506), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(185), 1, - sym_comment, - STATE(573), 1, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24243,78 +22338,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18112] = 26, + [16259] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(238), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(186), 1, - sym_comment, - STATE(345), 1, + STATE(467), 1, sym__expression, - STATE(899), 1, + STATE(794), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24327,78 +22416,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18222] = 26, + [16360] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(187), 1, - sym_comment, - STATE(631), 1, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(644), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1151), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24411,78 +22494,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18332] = 26, + [16461] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(188), 1, - sym_comment, - STATE(476), 1, + STATE(643), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24495,78 +22572,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18442] = 26, + [16562] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(27), 1, + anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(230), 1, - sym_identifier, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_func, - ACTIONS(238), 1, - anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(189), 1, - sym_comment, - STATE(340), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_chan, + STATE(294), 1, sym__expression, - STATE(899), 1, + STATE(903), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1137), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1242), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(1014), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(320), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24579,78 +22650,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18552] = 26, + [16663] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(190), 1, - sym_comment, - STATE(426), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(466), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24663,78 +22728,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18662] = 26, + [16764] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, + ACTIONS(304), 1, anon_sym_STAR, - STATE(191), 1, - sym_comment, - STATE(634), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(465), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1155), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24747,78 +22806,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18772] = 26, + [16865] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(192), 1, - sym_comment, - STATE(644), 1, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24831,78 +22884,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18882] = 26, + [16966] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - STATE(193), 1, - sym_comment, - STATE(425), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(463), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24915,78 +22962,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18992] = 26, + [17067] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(302), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(342), 1, sym_identifier, - ACTIONS(310), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(530), 1, + ACTIONS(540), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(622), 1, - anon_sym_chan, - STATE(194), 1, - sym_comment, - STATE(476), 1, + STATE(481), 1, sym__expression, - STATE(931), 1, + STATE(895), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24999,78 +23040,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19102] = 26, + [17168] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(432), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(195), 1, - sym_comment, - STATE(482), 1, + STATE(425), 1, sym__expression, - STATE(934), 1, + STATE(794), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25083,78 +23118,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19212] = 26, + [17269] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(196), 1, - sym_comment, - STATE(608), 1, + STATE(586), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25167,78 +23196,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19322] = 26, + [17370] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(197), 1, - sym_comment, - STATE(384), 1, + STATE(657), 1, sym__expression, - STATE(883), 1, + STATE(794), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25251,78 +23274,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19432] = 26, + [17471] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - STATE(198), 1, - sym_comment, - STATE(425), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + STATE(601), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25335,78 +23352,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19542] = 26, + [17572] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(600), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(296), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(622), 1, - anon_sym_chan, - STATE(199), 1, - sym_comment, - STATE(387), 1, + STATE(484), 1, sym__expression, - STATE(883), 1, + STATE(794), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25419,78 +23430,150 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19652] = 26, + [17673] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, + anon_sym_STAR, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(649), 1, + sym__expression, + STATE(794), 1, + sym_qualified_type, + STATE(1138), 1, + sym_implicit_length_array_type, + ACTIONS(312), 2, + anon_sym_new, + anon_sym_make, + STATE(1261), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(316), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(314), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(867), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(320), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(436), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [17774] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(362), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(622), 1, - anon_sym_chan, - STATE(200), 1, - sym_comment, STATE(425), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25503,78 +23586,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19762] = 26, + [17875] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(606), 1, - anon_sym_STAR, - ACTIONS(608), 1, - anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(201), 1, - sym_comment, - STATE(385), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(650), 1, sym__expression, - STATE(883), 1, + STATE(794), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1151), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25587,78 +23664,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19872] = 26, + [17976] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(600), 1, + ACTIONS(592), 1, sym_identifier, - ACTIONS(602), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - STATE(202), 1, - sym_comment, - STATE(387), 1, + ACTIONS(616), 1, + anon_sym_chan, + STATE(384), 1, sym__expression, - STATE(883), 1, + STATE(916), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25671,78 +23742,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19982] = 26, + [18077] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(203), 1, - sym_comment, - STATE(641), 1, + STATE(346), 1, sym__expression, - STATE(799), 1, + STATE(947), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25755,78 +23820,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20092] = 26, + [18178] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(430), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(592), 1, sym_identifier, - ACTIONS(432), 1, + ACTIONS(594), 1, anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(596), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(598), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(600), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, + ACTIONS(608), 1, anon_sym_DQUOTE, - ACTIONS(622), 1, - anon_sym_chan, - STATE(204), 1, - sym_comment, - STATE(487), 1, + STATE(389), 1, sym__expression, - STATE(934), 1, + STATE(916), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1119), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(602), 2, anon_sym_new, anon_sym_make, - STATE(1246), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(606), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(604), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(1108), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(610), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(392), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25839,78 +23898,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20202] = 26, + [18279] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(205), 1, - sym_comment, - STATE(630), 1, + STATE(582), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25923,78 +23976,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20312] = 26, + [18380] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(374), 1, + ACTIONS(304), 1, + anon_sym_STAR, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(486), 1, - anon_sym_STAR, - ACTIONS(516), 1, - sym_identifier, - STATE(206), 1, - sym_comment, - STATE(425), 1, + STATE(607), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26007,78 +24054,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20422] = 26, + [18481] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - STATE(207), 1, - sym_comment, - STATE(603), 1, + ACTIONS(246), 1, + anon_sym_DQUOTE, + ACTIONS(616), 1, + anon_sym_chan, + STATE(346), 1, sym__expression, - STATE(799), 1, + STATE(947), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26091,78 +24132,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20532] = 26, + [18582] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(238), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(208), 1, - sym_comment, - STATE(344), 1, + STATE(490), 1, sym__expression, - STATE(899), 1, + STATE(884), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1160), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(1074), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(553), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26175,78 +24210,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20642] = 26, + [18683] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_LPAREN, + ACTIONS(232), 1, + anon_sym_func, + ACTIONS(234), 1, + anon_sym_STAR, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, - anon_sym_func, - ACTIONS(598), 1, - sym_identifier, - STATE(209), 1, - sym_comment, - STATE(299), 1, + STATE(346), 1, sym__expression, - STATE(895), 1, + STATE(947), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26259,78 +24288,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20752] = 26, + [18784] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(210), 1, - sym_comment, - STATE(632), 1, + STATE(585), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26343,78 +24366,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20862] = 26, + [18885] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, + ACTIONS(304), 1, anon_sym_STAR, - STATE(211), 1, - sym_comment, - STATE(636), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1155), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26427,78 +24444,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20972] = 26, + [18986] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, + ACTIONS(304), 1, anon_sym_STAR, - STATE(212), 1, - sym_comment, - STATE(652), 1, + ACTIONS(310), 1, + anon_sym_LT_DASH, + ACTIONS(318), 1, + anon_sym_DQUOTE, + STATE(660), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1155), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26511,78 +24522,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21082] = 26, + [19087] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(302), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(310), 1, - anon_sym_func, - ACTIONS(530), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(428), 1, + anon_sym_func, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, + ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(213), 1, - sym_comment, - STATE(483), 1, + ACTIONS(616), 1, + anon_sym_chan, + STATE(490), 1, sym__expression, - STATE(931), 1, + STATE(884), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1160), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(1074), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(553), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26595,78 +24600,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21192] = 26, + [19188] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(214), 1, - sym_comment, - STATE(468), 1, + ACTIONS(494), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26679,78 +24678,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21302] = 26, + [19289] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(215), 1, - sym_comment, - STATE(465), 1, + STATE(490), 1, sym__expression, - STATE(799), 1, + STATE(884), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1160), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1074), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(553), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26763,78 +24756,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21412] = 26, + [19390] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(216), 1, - sym_comment, - STATE(647), 1, + ACTIONS(616), 1, + anon_sym_chan, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26847,78 +24834,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21522] = 26, + [19491] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(217), 1, - sym_comment, - STATE(425), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(652), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1151), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26931,78 +24912,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21632] = 26, + [19592] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(230), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(296), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(238), 1, + ACTIONS(304), 1, anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(622), 1, - anon_sym_chan, - STATE(218), 1, - sym_comment, - STATE(344), 1, + STATE(646), 1, sym__expression, - STATE(899), 1, + STATE(794), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1279), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27015,78 +24990,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21742] = 26, + [19693] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(43), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(304), 1, + anon_sym_STAR, + ACTIONS(310), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, - anon_sym_func, - ACTIONS(598), 1, - sym_identifier, - STATE(219), 1, - sym_comment, - STATE(299), 1, + STATE(645), 1, sym__expression, - STATE(895), 1, + STATE(794), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(314), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27099,78 +25068,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21852] = 26, + [19794] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, - anon_sym_STAR, - ACTIONS(374), 1, - anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - STATE(220), 1, - sym_comment, - STATE(469), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(614), 1, + anon_sym_STAR, + STATE(426), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1006), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27183,78 +25146,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21962] = 26, + [19895] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(606), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(608), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, - anon_sym_DQUOTE, - STATE(221), 1, - sym_comment, - STATE(387), 1, + STATE(612), 1, sym__expression, - STATE(883), 1, + STATE(794), 1, sym_qualified_type, - STATE(1135), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(610), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1280), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(614), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(612), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1097), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(618), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(403), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27267,78 +25224,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22072] = 26, + [19996] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, - sym_identifier, - ACTIONS(362), 1, + ACTIONS(298), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(302), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, - anon_sym_DQUOTE, - STATE(222), 1, - sym_comment, - STATE(646), 1, + STATE(598), 1, sym__expression, - STATE(799), 1, + STATE(794), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27351,78 +25302,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22182] = 26, + [20097] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(223), 1, - sym_comment, - STATE(467), 1, + STATE(345), 1, sym__expression, - STATE(799), 1, + STATE(947), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27435,78 +25380,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22292] = 26, + [20198] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(506), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - STATE(224), 1, - sym_comment, - STATE(604), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(480), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27519,78 +25458,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22402] = 26, + [20299] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(225), 1, - sym_comment, - STATE(629), 1, + STATE(344), 1, sym__expression, - STATE(799), 1, + STATE(947), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27603,78 +25536,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22512] = 26, + [20400] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(226), 1, - sym_comment, - STATE(426), 1, + STATE(342), 1, sym__expression, - STATE(799), 1, + STATE(947), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27687,78 +25614,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22622] = 26, + [20501] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(360), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(622), 1, - anon_sym_chan, - STATE(227), 1, - sym_comment, - STATE(425), 1, + STATE(471), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27771,78 +25692,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22732] = 26, + [20602] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(43), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(73), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - ACTIONS(182), 1, - anon_sym_func, - ACTIONS(598), 1, - sym_identifier, - ACTIONS(622), 1, - anon_sym_chan, - STATE(228), 1, - sym_comment, - STATE(299), 1, + STATE(473), 1, sym__expression, STATE(895), 1, sym_qualified_type, - STATE(1145), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(67), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1254), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(71), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(69), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1104), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(75), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(335), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27855,78 +25770,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22842] = 26, + [20703] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(454), 1, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(456), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - STATE(229), 1, - sym_comment, - STATE(619), 1, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(470), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27939,78 +25848,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [22952] = 26, + [20804] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(430), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(434), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(436), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - ACTIONS(438), 1, + ACTIONS(544), 1, anon_sym_LT_DASH, - ACTIONS(446), 1, + ACTIONS(550), 1, anon_sym_DQUOTE, - STATE(230), 1, - sym_comment, - STATE(487), 1, + STATE(478), 1, sym__expression, - STATE(934), 1, + STATE(895), 1, sym_qualified_type, - STATE(1174), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(440), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(444), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(442), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1020), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(448), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(560), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -28023,78 +25926,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [23062] = 26, + [20905] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(342), 1, sym_identifier, - ACTIONS(362), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(350), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(456), 1, - anon_sym_LT_DASH, - ACTIONS(620), 1, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_STAR, - STATE(231), 1, - sym_comment, - STATE(653), 1, + ACTIONS(544), 1, + anon_sym_LT_DASH, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(486), 1, sym__expression, - STATE(799), 1, + STATE(895), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1116), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, - STATE(1155), 2, + STATE(1264), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(548), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(458), 5, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1036), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(539), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -28107,78 +26004,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [23172] = 26, + [21006] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(230), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(234), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(236), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(238), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(240), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(250), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(232), 1, - sym_comment, - STATE(344), 1, + STATE(341), 1, sym__expression, - STATE(899), 1, + STATE(947), 1, sym_qualified_type, - STATE(1142), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(244), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(955), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(248), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(246), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1087), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(252), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(379), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -28191,78 +26082,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [23282] = 26, + [21107] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(360), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(362), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(368), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(374), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(382), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(233), 1, - sym_comment, - STATE(660), 1, + STATE(340), 1, sym__expression, - STATE(799), 1, + STATE(947), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1159), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(378), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1073), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -28275,78 +26160,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [23392] = 26, + [21208] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(362), 1, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(366), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(382), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - STATE(234), 1, - sym_comment, - STATE(627), 1, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(492), 1, sym__expression, - STATE(799), 1, + STATE(884), 1, sym_qualified_type, - STATE(1157), 1, + STATE(1160), 1, sym_implicit_length_array_type, - ACTIONS(376), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1275), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(380), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(512), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(849), 5, + STATE(1074), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(384), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(452), 12, + STATE(553), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -28359,78 +26238,72 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [23502] = 26, + [21309] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(27), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, ACTIONS(302), 1, - sym_identifier, - ACTIONS(310), 1, anon_sym_func, - ACTIONS(530), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, anon_sym_STAR, - ACTIONS(534), 1, + ACTIONS(460), 1, anon_sym_LT_DASH, - ACTIONS(540), 1, - anon_sym_DQUOTE, - STATE(235), 1, - sym_comment, - STATE(480), 1, + STATE(654), 1, sym__expression, - STATE(931), 1, + STATE(794), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1138), 1, sym_implicit_length_array_type, - ACTIONS(318), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1278), 2, + STATE(1261), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(538), 3, + ACTIONS(316), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(823), 4, + STATE(816), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(536), 5, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1022), 5, + STATE(867), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(322), 6, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(534), 12, + STATE(436), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -28443,372 +26316,818 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [23612] = 9, + [21410] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(628), 1, - anon_sym_DOT, - ACTIONS(630), 1, - anon_sym_LBRACK, - STATE(236), 1, sym_comment, - STATE(281), 1, - sym_type_arguments, - ACTIONS(624), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(626), 44, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, - anon_sym_type, - anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, anon_sym_struct, - anon_sym_LBRACE, + ACTIONS(33), 1, anon_sym_interface, + ACTIONS(35), 1, anon_sym_map, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(298), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_func, + ACTIONS(318), 1, + anon_sym_DQUOTE, + ACTIONS(454), 1, + sym_identifier, + ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(460), 1, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, + STATE(620), 1, + sym__expression, + STATE(794), 1, + sym_qualified_type, + STATE(1138), 1, + sym_implicit_length_array_type, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, + STATE(1261), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(316), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(462), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, + STATE(867), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(320), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [23684] = 8, + STATE(436), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [21511] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(280), 1, - anon_sym_LBRACE, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(237), 1, sym_comment, - STATE(288), 1, - sym_block, - ACTIONS(633), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(635), 44, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(23), 1, anon_sym_LBRACK, - anon_sym_type, - anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, + ACTIONS(33), 1, anon_sym_interface, + ACTIONS(35), 1, anon_sym_map, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(488), 1, + sym__expression, + STATE(895), 1, + sym_qualified_type, + STATE(1116), 1, + sym_implicit_length_array_type, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, + STATE(1264), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(548), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, + STATE(1036), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [23753] = 8, + STATE(539), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [21612] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(641), 1, - anon_sym_LBRACK, - STATE(238), 1, sym_comment, - STATE(252), 1, - sym_type_arguments, - ACTIONS(637), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(639), 44, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, - anon_sym_type, - anon_sym_STAR, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, anon_sym_struct, - anon_sym_LBRACE, + ACTIONS(33), 1, anon_sym_interface, + ACTIONS(35), 1, anon_sym_map, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, + anon_sym_LPAREN, + ACTIONS(428), 1, + anon_sym_func, + ACTIONS(430), 1, + anon_sym_STAR, + ACTIONS(432), 1, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(491), 1, + sym__expression, + STATE(884), 1, + sym_qualified_type, + STATE(1160), 1, + sym_implicit_length_array_type, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, + STATE(1267), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(438), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, + STATE(1074), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [23822] = 8, + STATE(553), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [21713] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(280), 1, - anon_sym_LBRACE, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(239), 1, sym_comment, - STATE(254), 1, - sym_block, - ACTIONS(644), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(646), 44, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(23), 1, anon_sym_LBRACK, - anon_sym_type, - anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, + ACTIONS(33), 1, anon_sym_interface, + ACTIONS(35), 1, anon_sym_map, + ACTIONS(37), 1, anon_sym_chan, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, + anon_sym_LPAREN, + ACTIONS(428), 1, + anon_sym_func, + ACTIONS(430), 1, + anon_sym_STAR, + ACTIONS(432), 1, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(483), 1, + sym__expression, + STATE(884), 1, + sym_qualified_type, + STATE(1160), 1, + sym_implicit_length_array_type, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, + STATE(1267), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(438), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, + STATE(1074), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [23891] = 8, + STATE(553), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [21814] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(280), 1, - anon_sym_LBRACE, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(240), 1, sym_comment, - STATE(286), 1, - sym_block, - ACTIONS(648), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(650), 44, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(23), 1, anon_sym_LBRACK, - anon_sym_type, - anon_sym_STAR, + ACTIONS(29), 1, anon_sym_struct, + ACTIONS(33), 1, anon_sym_interface, + ACTIONS(35), 1, anon_sym_map, - anon_sym_chan, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, + ACTIONS(550), 1, + anon_sym_DQUOTE, + ACTIONS(616), 1, + anon_sym_chan, + STATE(481), 1, + sym__expression, + STATE(895), 1, + sym_qualified_type, + STATE(1116), 1, + sym_implicit_length_array_type, + ACTIONS(358), 2, anon_sym_new, anon_sym_make, + STATE(1264), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(548), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(546), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, + STATE(1036), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(362), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [23960] = 13, + STATE(539), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [21915] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, - anon_sym_LF, - ACTIONS(656), 1, - anon_sym_DOT, - ACTIONS(659), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_LBRACE, - ACTIONS(667), 1, - anon_sym_COLON, - STATE(241), 1, sym_comment, - STATE(337), 1, - sym_literal_value, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, + anon_sym_LPAREN, + ACTIONS(428), 1, + anon_sym_func, + ACTIONS(430), 1, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(432), 1, anon_sym_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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_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_case, - anon_sym_default, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(482), 1, + sym__expression, + STATE(884), 1, + sym_qualified_type, + STATE(1160), 1, + sym_implicit_length_array_type, + ACTIONS(434), 2, + anon_sym_new, + anon_sym_make, + STATE(1267), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(438), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, + STATE(1074), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(442), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(553), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [22016] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(342), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_func, + ACTIONS(540), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_STAR, + ACTIONS(544), 1, + anon_sym_LT_DASH, + ACTIONS(550), 1, + anon_sym_DQUOTE, + STATE(481), 1, + sym__expression, + STATE(895), 1, + sym_qualified_type, + STATE(1116), 1, + sym_implicit_length_array_type, + ACTIONS(358), 2, + anon_sym_new, + anon_sym_make, + STATE(1006), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(548), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(546), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(1036), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(362), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(539), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [22117] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, + anon_sym_LPAREN, + ACTIONS(428), 1, + anon_sym_func, + ACTIONS(430), 1, + anon_sym_STAR, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(487), 1, + sym__expression, + STATE(884), 1, + sym_qualified_type, + STATE(1160), 1, + sym_implicit_length_array_type, + ACTIONS(434), 2, + anon_sym_new, + anon_sym_make, + STATE(1267), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(438), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(436), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(1074), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(442), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(553), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [22218] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(39), 1, + anon_sym_LT_DASH, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(612), 1, + sym_identifier, + STATE(294), 1, + sym__expression, + STATE(903), 1, + sym_qualified_type, + STATE(1137), 1, + sym_implicit_length_array_type, + ACTIONS(63), 2, + anon_sym_new, + anon_sym_make, + STATE(1242), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(67), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(816), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(65), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(1014), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(71), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(320), 12, + sym_parenthesized_expression, + sym_call_expression, + sym_selector_expression, + sym_index_expression, + sym_slice_expression, + sym_type_assertion_expression, + sym_type_conversion_expression, + sym_composite_literal, + sym_func_literal, + sym_unary_expression, + sym_binary_expression, + sym_interpreted_string_literal, + [22319] = 6, + ACTIONS(286), 1, + sym_comment, + ACTIONS(622), 1, + anon_sym_DOT, + ACTIONS(624), 1, + anon_sym_LBRACK, + STATE(267), 1, + sym_type_arguments, + ACTIONS(618), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(620), 44, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_type, + anon_sym_STAR, + anon_sym_struct, + anon_sym_LBRACE, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + anon_sym_LT_DASH, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [22382] = 10, + ACTIONS(286), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_LF, + ACTIONS(631), 1, + anon_sym_DOT, + ACTIONS(634), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(642), 1, + anon_sym_COLON, + STATE(306), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(629), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_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_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_case, + anon_sym_default, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, @@ -28816,32 +27135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [24039] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, + [22452] = 10, + ACTIONS(286), 1, + sym_comment, + ACTIONS(627), 1, anon_sym_LF, - ACTIONS(656), 1, + ACTIONS(631), 1, anon_sym_DOT, - ACTIONS(659), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(669), 1, + ACTIONS(644), 1, anon_sym_COLON, - STATE(242), 1, - sym_comment, - STATE(337), 1, + STATE(306), 1, sym_literal_value, - STATE(828), 1, + STATE(817), 1, sym_type_arguments, - ACTIONS(654), 40, + ACTIONS(629), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -28882,22 +27195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [24118] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(671), 1, + [22522] = 5, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, + sym_comment, + STATE(244), 1, + sym_block, + ACTIONS(646), 2, ts_builtin_sym_end, - ACTIONS(675), 1, anon_sym_LF, - ACTIONS(677), 1, + ACTIONS(648), 44, anon_sym_SEMI, - STATE(243), 1, - sym_comment, - ACTIONS(673), 44, anon_sym_package, anon_sym_import, anon_sym_LPAREN, @@ -28908,7 +27217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_STAR, anon_sym_struct, - anon_sym_LBRACE, anon_sym_interface, anon_sym_map, anon_sym_chan, @@ -28942,19 +27250,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24186] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(244), 1, + [22582] = 5, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, sym_comment, - ACTIONS(680), 2, + STATE(288), 1, + sym_block, + ACTIONS(650), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(682), 45, + ACTIONS(652), 44, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28966,7 +27272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_STAR, anon_sym_struct, - anon_sym_LBRACE, anon_sym_interface, anon_sym_map, anon_sym_chan, @@ -29000,19 +27305,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24250] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(245), 1, + [22642] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(684), 2, + ACTIONS(658), 1, + anon_sym_LBRACK, + STATE(269), 1, + sym_type_arguments, + ACTIONS(654), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(686), 45, + ACTIONS(656), 44, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29020,7 +27323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, anon_sym_func, - anon_sym_LBRACK, anon_sym_type, anon_sym_STAR, anon_sym_struct, @@ -29058,19 +27360,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24314] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(246), 1, + [22702] = 5, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, sym_comment, - ACTIONS(637), 2, + STATE(255), 1, + sym_block, + ACTIONS(661), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(639), 45, + ACTIONS(663), 44, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29082,7 +27382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_STAR, anon_sym_struct, - anon_sym_LBRACE, anon_sym_interface, anon_sym_map, anon_sym_chan, @@ -29116,19 +27415,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24378] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(247), 1, + [22762] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(688), 2, + ACTIONS(665), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(690), 45, + ACTIONS(667), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29174,19 +27467,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24442] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(248), 1, + [22817] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(692), 2, + ACTIONS(669), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(694), 45, + ACTIONS(671), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29232,19 +27519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24506] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(249), 1, + [22872] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(696), 2, + ACTIONS(673), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(698), 45, + ACTIONS(675), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29290,19 +27571,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24570] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(250), 1, + [22927] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(700), 2, + ACTIONS(677), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(702), 45, + ACTIONS(679), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29348,20 +27623,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24634] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(251), 1, + [22982] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(704), 2, + ACTIONS(681), 1, ts_builtin_sym_end, + ACTIONS(685), 1, anon_sym_LF, - ACTIONS(706), 45, + ACTIONS(687), 1, anon_sym_SEMI, + ACTIONS(683), 44, anon_sym_package, anon_sym_import, anon_sym_LPAREN, @@ -29406,19 +27677,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24698] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(252), 1, + [23041] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(708), 2, + ACTIONS(690), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(710), 45, + ACTIONS(692), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29464,93 +27729,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24762] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(712), 1, - anon_sym_LF, - ACTIONS(716), 1, - anon_sym_DOT, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(720), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, - anon_sym_LT_DASH, - ACTIONS(732), 1, - anon_sym_PLUS_PLUS, - ACTIONS(734), 1, - anon_sym_DASH_DASH, - ACTIONS(738), 1, - anon_sym_AMP_AMP, - ACTIONS(740), 1, - anon_sym_PIPE_PIPE, - STATE(253), 1, - sym_comment, - STATE(329), 1, - sym_argument_list, - STATE(755), 1, - aux_sym_expression_list_repeat1, - STATE(1183), 1, - sym_type_arguments, - ACTIONS(714), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(728), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(736), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(726), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(722), 13, - anon_sym_EQ, - anon_sym_COLON_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_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [24858] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(254), 1, + [23096] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(742), 2, + ACTIONS(694), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(744), 45, + ACTIONS(696), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29596,19 +27781,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24922] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(255), 1, + [23151] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(746), 2, + ACTIONS(698), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 45, + ACTIONS(700), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29654,19 +27833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24986] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(256), 1, + [23206] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(750), 2, + ACTIONS(702), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(752), 45, + ACTIONS(704), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29712,19 +27885,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25050] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(257), 1, + [23261] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(754), 2, + ACTIONS(706), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(756), 45, + ACTIONS(708), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29770,19 +27937,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25114] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(258), 1, + [23316] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(758), 2, + ACTIONS(654), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(760), 45, + ACTIONS(656), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29828,19 +27989,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25178] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(259), 1, + [23371] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(762), 2, + ACTIONS(710), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 45, + ACTIONS(712), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29886,19 +28041,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25242] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(260), 1, + [23426] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(766), 2, + ACTIONS(714), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 45, + ACTIONS(716), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29944,19 +28093,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25306] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(261), 1, + [23481] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(770), 2, + ACTIONS(718), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(772), 45, + ACTIONS(720), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30002,19 +28145,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25370] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(262), 1, + [23536] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(774), 2, + ACTIONS(722), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(776), 45, + ACTIONS(724), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30060,19 +28197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25434] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(263), 1, + [23591] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(778), 2, + ACTIONS(726), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(780), 45, + ACTIONS(728), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30118,19 +28249,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25498] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(264), 1, + [23646] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(782), 2, + ACTIONS(730), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(784), 45, + ACTIONS(732), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30176,19 +28301,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25562] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(265), 1, + [23701] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(786), 2, + ACTIONS(734), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(788), 45, + ACTIONS(736), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30234,19 +28353,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25626] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(266), 1, + [23756] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(790), 2, + ACTIONS(738), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(792), 45, + ACTIONS(740), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30292,19 +28405,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25690] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(267), 1, + [23811] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(794), 2, + ACTIONS(742), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(796), 45, + ACTIONS(744), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30350,19 +28457,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25754] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(268), 1, + [23866] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(798), 2, + ACTIONS(746), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(800), 45, + ACTIONS(748), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30408,19 +28509,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25818] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(269), 1, + [23921] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(802), 2, + ACTIONS(750), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(804), 45, + ACTIONS(752), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30466,135 +28561,71 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25882] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(270), 1, + [23976] = 9, + ACTIONS(286), 1, sym_comment, - ACTIONS(806), 2, - ts_builtin_sym_end, + ACTIONS(627), 1, anon_sym_LF, - ACTIONS(808), 45, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, + ACTIONS(631), 1, + anon_sym_DOT, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(637), 1, anon_sym_LBRACK, - anon_sym_type, - anon_sym_STAR, - anon_sym_struct, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [25946] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(271), 1, - sym_comment, - ACTIONS(810), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(812), 45, + STATE(306), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(629), 40, anon_sym_SEMI, - anon_sym_package, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, - anon_sym_LBRACK, - anon_sym_type, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, - anon_sym_struct, - anon_sym_LBRACE, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, + anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_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_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_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [26010] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(272), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [24043] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(814), 2, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(816), 45, + ACTIONS(756), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30640,19 +28671,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26074] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(273), 1, + [24098] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(818), 2, + ACTIONS(758), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(820), 45, + ACTIONS(760), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30698,19 +28723,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26138] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(274), 1, + [24153] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(822), 2, + ACTIONS(762), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(824), 45, + ACTIONS(764), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30756,19 +28775,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26202] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(275), 1, + [24208] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(826), 2, + ACTIONS(766), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(828), 45, + ACTIONS(768), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30814,83 +28827,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26266] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, - anon_sym_LF, - ACTIONS(656), 1, - anon_sym_DOT, - ACTIONS(659), 1, - anon_sym_LPAREN, - ACTIONS(662), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_LBRACE, - STATE(276), 1, - sym_comment, - STATE(337), 1, - sym_literal_value, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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_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_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [26342] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(277), 1, + [24263] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(830), 2, + ACTIONS(770), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(832), 45, + ACTIONS(772), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30936,19 +28879,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26406] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(278), 1, + [24318] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(834), 2, + ACTIONS(774), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(836), 45, + ACTIONS(776), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -30994,19 +28931,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26470] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(279), 1, + [24373] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(838), 2, + ACTIONS(778), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(840), 45, + ACTIONS(780), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31052,19 +28983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26534] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(280), 1, + [24428] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(842), 2, + ACTIONS(782), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(844), 45, + ACTIONS(784), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31110,19 +29035,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26598] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(281), 1, + [24483] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(846), 2, + ACTIONS(786), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(848), 45, + ACTIONS(788), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31168,19 +29087,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26662] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(282), 1, + [24538] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(692), 2, + ACTIONS(790), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(694), 45, + ACTIONS(792), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31226,19 +29139,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26726] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(283), 1, + [24593] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(692), 2, + ACTIONS(794), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(694), 45, + ACTIONS(796), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31284,19 +29191,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26790] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(284), 1, + [24648] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(850), 2, + ACTIONS(798), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(852), 45, + ACTIONS(800), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31342,97 +29243,169 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26854] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + [24703] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(802), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(804), 45, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_LBRACK, + anon_sym_type, + anon_sym_STAR, anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(854), 1, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + anon_sym_LT_DASH, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, sym_identifier, - ACTIONS(856), 1, - anon_sym_DOT, - ACTIONS(859), 1, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [24758] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(806), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(808), 45, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, anon_sym_LPAREN, - ACTIONS(863), 1, - anon_sym_COMMA, - ACTIONS(866), 1, + anon_sym_const, + anon_sym_var, anon_sym_func, - ACTIONS(868), 1, anon_sym_LBRACK, - ACTIONS(871), 1, - anon_sym_RBRACK, - ACTIONS(874), 1, + anon_sym_type, anon_sym_STAR, - ACTIONS(877), 1, + anon_sym_struct, + anon_sym_LBRACE, + anon_sym_interface, anon_sym_map, - ACTIONS(879), 1, anon_sym_chan, - ACTIONS(881), 1, anon_sym_LT_DASH, - STATE(285), 1, - sym_comment, - STATE(441), 1, - sym_literal_value, - STATE(666), 1, - aux_sym_parameter_declaration_repeat1, - STATE(793), 1, - sym_qualified_type, - STATE(828), 1, - sym_type_arguments, - STATE(1079), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(654), 5, - anon_sym_PIPE, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - ACTIONS(652), 13, + sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [24813] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(810), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(812), 45, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_LBRACK, + anon_sym_type, + anon_sym_STAR, + anon_sym_struct, + anon_sym_LBRACE, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + anon_sym_LT_DASH, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [26958] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(286), 1, + anon_sym_AMP, + sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [24868] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(883), 2, + ACTIONS(814), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(885), 45, + ACTIONS(816), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31478,19 +29451,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27022] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(287), 1, + [24923] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(887), 2, + ACTIONS(726), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(889), 45, + ACTIONS(728), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31536,19 +29503,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27086] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(288), 1, + [24978] = 19, + ACTIONS(286), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_LF, + ACTIONS(822), 1, + anon_sym_DOT, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(826), 1, + anon_sym_COMMA, + ACTIONS(830), 1, + anon_sym_LBRACK, + ACTIONS(836), 1, + anon_sym_LT_DASH, + ACTIONS(838), 1, + anon_sym_PLUS_PLUS, + ACTIONS(840), 1, + anon_sym_DASH_DASH, + ACTIONS(844), 1, + anon_sym_AMP_AMP, + ACTIONS(846), 1, + anon_sym_PIPE_PIPE, + STATE(322), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(1180), 1, + sym_type_arguments, + ACTIONS(820), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(834), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(842), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(832), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(828), 13, + anon_sym_EQ, + anon_sym_COLON_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_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [25065] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(891), 2, + ACTIONS(726), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(893), 45, + ACTIONS(728), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31594,19 +29623,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27150] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(289), 1, + [25120] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(895), 2, + ACTIONS(848), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(897), 45, + ACTIONS(850), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31652,19 +29675,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27214] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(290), 1, + [25175] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(899), 2, + ACTIONS(852), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(901), 45, + ACTIONS(854), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31710,19 +29727,85 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27278] = 6, + [25230] = 23, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(291), 1, sym_comment, - ACTIONS(903), 2, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(858), 1, + anon_sym_DOT, + ACTIONS(861), 1, + anon_sym_LPAREN, + ACTIONS(865), 1, + anon_sym_COMMA, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(870), 1, + anon_sym_LBRACK, + ACTIONS(873), 1, + anon_sym_RBRACK, + ACTIONS(876), 1, + anon_sym_STAR, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + STATE(434), 1, + sym_literal_value, + STATE(662), 1, + aux_sym_parameter_declaration_repeat1, + STATE(789), 1, + sym_qualified_type, + STATE(817), 1, + sym_type_arguments, + STATE(1023), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(629), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + ACTIONS(627), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [25325] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(885), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(905), 45, + ACTIONS(887), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31768,19 +29851,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27342] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(292), 1, + [25380] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(907), 2, + ACTIONS(889), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(909), 45, + ACTIONS(891), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31826,19 +29903,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27406] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - STATE(293), 1, + [25435] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(911), 2, + ACTIONS(893), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(913), 45, + ACTIONS(895), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -31884,105 +29955,182 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27470] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(716), 1, - anon_sym_DOT, - ACTIONS(718), 1, + [25490] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(897), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(899), 45, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, anon_sym_LPAREN, - ACTIONS(724), 1, + anon_sym_const, + anon_sym_var, + anon_sym_func, anon_sym_LBRACK, - ACTIONS(738), 1, - anon_sym_AMP_AMP, - ACTIONS(915), 1, - anon_sym_LF, - STATE(294), 1, - sym_comment, - STATE(329), 1, - sym_argument_list, - STATE(1183), 1, - sym_type_arguments, - ACTIONS(728), 4, - anon_sym_PIPE, + anon_sym_type, + anon_sym_STAR, + anon_sym_struct, + anon_sym_LBRACE, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + anon_sym_LT_DASH, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_CARET, - ACTIONS(736), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(726), 7, + anon_sym_AMP, + sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [25545] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(901), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 45, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_LBRACK, + anon_sym_type, anon_sym_STAR, + anon_sym_struct, + anon_sym_LBRACE, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + anon_sym_LT_DASH, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(917), 22, + sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [25600] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(905), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(907), 45, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_package, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_LBRACK, + anon_sym_type, + anon_sym_STAR, + anon_sym_struct, + anon_sym_LBRACE, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, anon_sym_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_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_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_case, - anon_sym_default, - anon_sym_PIPE_PIPE, - [27551] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(716), 1, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_int_literal, + sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [25655] = 8, + ACTIONS(286), 1, + sym_comment, + ACTIONS(822), 1, anon_sym_DOT, - ACTIONS(718), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(830), 1, anon_sym_LBRACK, - ACTIONS(915), 1, + ACTIONS(909), 1, anon_sym_LF, - STATE(295), 1, - sym_comment, - STATE(329), 1, + STATE(322), 1, sym_argument_list, - STATE(1183), 1, + STATE(1180), 1, sym_type_arguments, - ACTIONS(726), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(917), 33, + ACTIONS(911), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, + anon_sym_STAR, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_LT_DASH, @@ -32005,6 +30153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -32013,34 +30167,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27626] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(716), 1, + [25719] = 12, + ACTIONS(286), 1, + sym_comment, + ACTIONS(822), 1, anon_sym_DOT, - ACTIONS(718), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(830), 1, anon_sym_LBRACK, - ACTIONS(915), 1, + ACTIONS(844), 1, + anon_sym_AMP_AMP, + ACTIONS(913), 1, anon_sym_LF, - STATE(296), 1, - sym_comment, - STATE(329), 1, + STATE(322), 1, sym_argument_list, - STATE(1183), 1, + STATE(1180), 1, sym_type_arguments, - ACTIONS(917), 40, + ACTIONS(834), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(842), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(832), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(915), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, - anon_sym_STAR, anon_sym_RBRACE, - anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_COLON_EQ, anon_sym_PLUS_PLUS, @@ -32058,50 +30226,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27699] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(716), 1, + [25791] = 11, + ACTIONS(286), 1, + sym_comment, + ACTIONS(822), 1, anon_sym_DOT, - ACTIONS(718), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(830), 1, anon_sym_LBRACK, - ACTIONS(915), 1, + ACTIONS(913), 1, anon_sym_LF, - STATE(297), 1, - sym_comment, - STATE(329), 1, + STATE(322), 1, sym_argument_list, - STATE(1183), 1, + STATE(1180), 1, sym_type_arguments, - ACTIONS(728), 4, + ACTIONS(834), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(726), 7, + ACTIONS(842), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(832), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32109,7 +30262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(917), 29, + ACTIONS(915), 23, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -32131,48 +30284,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27776] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(716), 1, + [25861] = 10, + ACTIONS(286), 1, + sym_comment, + ACTIONS(822), 1, anon_sym_DOT, - ACTIONS(718), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(830), 1, anon_sym_LBRACK, - ACTIONS(915), 1, + ACTIONS(913), 1, anon_sym_LF, - STATE(298), 1, - sym_comment, - STATE(329), 1, + STATE(322), 1, sym_argument_list, - STATE(1183), 1, + STATE(1180), 1, sym_type_arguments, - ACTIONS(728), 4, + ACTIONS(834), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(736), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(726), 7, + ACTIONS(832), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32180,7 +30314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(917), 23, + ACTIONS(915), 29, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -32202,34 +30336,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27855] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(716), 1, + [25929] = 9, + ACTIONS(286), 1, + sym_comment, + ACTIONS(822), 1, anon_sym_DOT, - ACTIONS(718), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(830), 1, anon_sym_LBRACK, - ACTIONS(919), 1, + ACTIONS(913), 1, anon_sym_LF, - STATE(299), 1, - sym_comment, - STATE(329), 1, + STATE(322), 1, sym_argument_list, - STATE(1183), 1, + STATE(1180), 1, sym_type_arguments, - ACTIONS(921), 40, + ACTIONS(832), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(915), 33, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, - anon_sym_STAR, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_LT_DASH, @@ -32252,12 +30393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -32266,16 +30401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27928] = 6, + [25995] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(300), 1, sym_comment, - ACTIONS(79), 16, + ACTIONS(75), 16, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -32292,7 +30421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_imaginary_literal, sym_rune_literal, - ACTIONS(923), 30, + ACTIONS(917), 30, anon_sym_package, anon_sym_import, anon_sym_const, @@ -32323,18 +30452,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [27991] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(778), 1, + [26049] = 8, + ACTIONS(286), 1, + sym_comment, + ACTIONS(822), 1, + anon_sym_DOT, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(830), 1, + anon_sym_LBRACK, + ACTIONS(913), 1, anon_sym_LF, - STATE(301), 1, + STATE(322), 1, + sym_argument_list, + STATE(1180), 1, + sym_type_arguments, + ACTIONS(915), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_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_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_case, + anon_sym_default, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [26113] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(780), 44, + ACTIONS(802), 1, + anon_sym_LF, + ACTIONS(804), 44, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32379,61 +30558,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28053] = 25, + [26166] = 22, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, + sym_comment, + ACTIONS(31), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(818), 1, anon_sym_SEMI, - ACTIONS(722), 1, + ACTIONS(828), 1, anon_sym_EQ, - ACTIONS(925), 1, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(923), 1, anon_sym_COMMA, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(931), 1, anon_sym_LT_DASH, - ACTIONS(941), 1, + ACTIONS(935), 1, anon_sym_PLUS_PLUS, - ACTIONS(943), 1, + ACTIONS(937), 1, anon_sym_DASH_DASH, - ACTIONS(949), 1, + ACTIONS(943), 1, anon_sym_AMP_AMP, - ACTIONS(951), 1, + ACTIONS(945), 1, anon_sym_PIPE_PIPE, - STATE(302), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, STATE(755), 1, aux_sym_expression_list_repeat1, - STATE(884), 1, + STATE(933), 1, sym_block, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(947), 2, + ACTIONS(941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(935), 4, + ACTIONS(929), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(945), 4, + ACTIONS(939), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(933), 7, + ACTIONS(927), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32441,7 +30614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(939), 12, + ACTIONS(933), 12, anon_sym_COLON_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -32454,22 +30627,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28153] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, + [26257] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(627), 1, anon_sym_LF, - ACTIONS(953), 1, + ACTIONS(947), 1, anon_sym_LPAREN, - STATE(303), 1, - sym_comment, - STATE(329), 1, + STATE(322), 1, sym_special_argument_list, - ACTIONS(654), 42, + ACTIONS(629), 42, anon_sym_SEMI, anon_sym_DOT, anon_sym_COMMA, @@ -32512,104 +30679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28219] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_SEMI, + [26314] = 3, + ACTIONS(286), 1, + sym_comment, ACTIONS(722), 1, - anon_sym_EQ, - ACTIONS(925), 1, + anon_sym_LF, + ACTIONS(724), 44, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(929), 1, anon_sym_COMMA, - ACTIONS(931), 1, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(937), 1, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_LT_DASH, - ACTIONS(941), 1, - anon_sym_PLUS_PLUS, - ACTIONS(943), 1, - anon_sym_DASH_DASH, - ACTIONS(949), 1, - anon_sym_AMP_AMP, - ACTIONS(951), 1, - anon_sym_PIPE_PIPE, - STATE(304), 1, - sym_comment, - STATE(378), 1, - sym_argument_list, - STATE(755), 1, - aux_sym_expression_list_repeat1, - STATE(871), 1, - sym_block, - STATE(1127), 1, - sym_type_arguments, - ACTIONS(947), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(935), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(933), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(939), 12, - anon_sym_COLON_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_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28319] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(818), 1, - anon_sym_LF, - STATE(305), 1, - sym_comment, - ACTIONS(820), 44, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + anon_sym_COLON_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR_EQ, @@ -32643,18 +30729,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28381] = 6, + [26367] = 22, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_LF, - STATE(306), 1, sym_comment, - ACTIONS(957), 43, + ACTIONS(31), 1, + anon_sym_LBRACE, + ACTIONS(818), 1, + anon_sym_SEMI, + ACTIONS(828), 1, + anon_sym_EQ, + ACTIONS(919), 1, + anon_sym_DOT, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(923), 1, + anon_sym_COMMA, + ACTIONS(925), 1, + anon_sym_LBRACK, + ACTIONS(931), 1, + anon_sym_LT_DASH, + ACTIONS(935), 1, + anon_sym_PLUS_PLUS, + ACTIONS(937), 1, + anon_sym_DASH_DASH, + ACTIONS(943), 1, + anon_sym_AMP_AMP, + ACTIONS(945), 1, + anon_sym_PIPE_PIPE, + STATE(358), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(848), 1, + sym_block, + STATE(1146), 1, + sym_type_arguments, + ACTIONS(941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(929), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(933), 12, + anon_sym_COLON_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_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [26458] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_LF, + ACTIONS(951), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32698,18 +30847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28442] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_LF, - STATE(307), 1, + [26510] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(961), 43, + ACTIONS(953), 1, + anon_sym_LF, + ACTIONS(955), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32753,18 +30896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28503] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(963), 1, - anon_sym_LF, - STATE(308), 1, + [26562] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(965), 43, + ACTIONS(957), 1, + anon_sym_LF, + ACTIONS(959), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32808,18 +30945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28564] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_LF, - STATE(309), 1, + [26614] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(969), 43, + ACTIONS(750), 1, + anon_sym_LF, + ACTIONS(752), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32863,18 +30994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28625] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(971), 1, - anon_sym_LF, - STATE(310), 1, + [26666] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(973), 43, + ACTIONS(961), 1, + anon_sym_LF, + ACTIONS(963), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32918,18 +31043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28686] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(975), 1, - anon_sym_LF, - STATE(311), 1, + [26718] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(977), 43, + ACTIONS(965), 1, + anon_sym_LF, + ACTIONS(967), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32973,18 +31092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28747] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_LF, - STATE(312), 1, + [26770] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(981), 43, + ACTIONS(969), 1, + anon_sym_LF, + ACTIONS(971), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33028,18 +31141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28808] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_LF, - STATE(313), 1, + [26822] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(985), 43, + ACTIONS(973), 1, + anon_sym_LF, + ACTIONS(975), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33083,18 +31190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28869] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_LF, - STATE(314), 1, + [26874] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(989), 43, + ACTIONS(977), 1, + anon_sym_LF, + ACTIONS(979), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33138,18 +31239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28930] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(991), 1, - anon_sym_LF, - STATE(315), 1, + [26926] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(993), 43, + ACTIONS(981), 1, + anon_sym_LF, + ACTIONS(983), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33193,18 +31288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28991] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_LF, - STATE(316), 1, + [26978] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(997), 43, + ACTIONS(985), 1, + anon_sym_LF, + ACTIONS(987), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33248,18 +31337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29052] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(790), 1, - anon_sym_LF, - STATE(317), 1, + [27030] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(792), 43, + ACTIONS(989), 1, + anon_sym_LF, + ACTIONS(991), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33303,18 +31386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29113] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_LF, - STATE(318), 1, + [27082] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1001), 43, + ACTIONS(993), 1, + anon_sym_LF, + ACTIONS(995), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33358,18 +31435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29174] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_LF, - STATE(319), 1, + [27134] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1005), 43, + ACTIONS(997), 1, + anon_sym_LF, + ACTIONS(999), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33413,18 +31484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29235] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_LF, - STATE(320), 1, + [27186] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1009), 43, + ACTIONS(627), 1, + anon_sym_LF, + ACTIONS(629), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33468,18 +31533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29296] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_LF, - STATE(321), 1, + [27238] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1013), 43, + ACTIONS(1001), 1, + anon_sym_LF, + ACTIONS(1003), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33523,18 +31582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29357] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_LF, - STATE(322), 1, + [27290] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1017), 43, + ACTIONS(1005), 1, + anon_sym_LF, + ACTIONS(1007), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33578,18 +31631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29418] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1019), 1, - anon_sym_LF, - STATE(323), 1, + [27342] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1021), 43, + ACTIONS(1009), 1, + anon_sym_LF, + ACTIONS(1011), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33633,59 +31680,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29479] = 24, + [27394] = 21, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(712), 1, + sym_comment, + ACTIONS(818), 1, anon_sym_SEMI, - ACTIONS(722), 1, + ACTIONS(828), 1, anon_sym_EQ, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(923), 1, anon_sym_COMMA, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - ACTIONS(937), 1, + ACTIONS(931), 1, anon_sym_LT_DASH, - ACTIONS(941), 1, + ACTIONS(935), 1, anon_sym_PLUS_PLUS, - ACTIONS(943), 1, + ACTIONS(937), 1, anon_sym_DASH_DASH, - ACTIONS(949), 1, + ACTIONS(943), 1, anon_sym_AMP_AMP, - ACTIONS(951), 1, + ACTIONS(945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1023), 1, + ACTIONS(1013), 1, anon_sym_DOT, - ACTIONS(1025), 1, + ACTIONS(1015), 1, anon_sym_LBRACE, - STATE(324), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, STATE(755), 1, aux_sym_expression_list_repeat1, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(947), 2, + ACTIONS(941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(935), 4, + ACTIONS(929), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(945), 4, + ACTIONS(939), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(933), 7, + ACTIONS(927), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -33693,7 +31734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(939), 12, + ACTIONS(933), 12, anon_sym_COLON_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -33706,18 +31747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29576] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_LF, - STATE(325), 1, + [27482] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1029), 43, + ACTIONS(1017), 1, + anon_sym_LF, + ACTIONS(1019), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33761,18 +31796,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29637] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1031), 1, + [27534] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1021), 1, anon_sym_LF, - STATE(326), 1, + ACTIONS(1023), 43, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_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_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_case, + anon_sym_default, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [27586] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1033), 43, + ACTIONS(1025), 1, + anon_sym_LF, + ACTIONS(1027), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33816,18 +31894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29698] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(327), 1, + [27638] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1037), 43, + ACTIONS(1029), 1, + anon_sym_LF, + ACTIONS(1031), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33871,18 +31943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29759] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1039), 1, - anon_sym_LF, - STATE(328), 1, + [27690] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1041), 43, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1035), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33926,18 +31992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29820] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1043), 1, - anon_sym_LF, - STATE(329), 1, + [27742] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1045), 43, + ACTIONS(1037), 1, + anon_sym_LF, + ACTIONS(1039), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33981,18 +32041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29881] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1047), 1, - anon_sym_LF, - STATE(330), 1, + [27794] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1049), 43, + ACTIONS(1041), 1, + anon_sym_LF, + ACTIONS(1043), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34036,18 +32090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29942] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1051), 1, - anon_sym_LF, - STATE(331), 1, + [27846] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1053), 43, + ACTIONS(1045), 1, + anon_sym_LF, + ACTIONS(1047), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34091,18 +32139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30003] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1055), 1, - anon_sym_LF, - STATE(332), 1, + [27898] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1057), 43, + ACTIONS(1049), 1, + anon_sym_LF, + ACTIONS(1051), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34146,18 +32188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30064] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(810), 1, - anon_sym_LF, - STATE(333), 1, + [27950] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(812), 43, + ACTIONS(1053), 1, + anon_sym_LF, + ACTIONS(1055), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34201,18 +32237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30125] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_LF, - STATE(334), 1, + [28002] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1061), 43, + ACTIONS(1057), 1, + anon_sym_LF, + ACTIONS(1059), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34256,18 +32286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30186] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, - anon_sym_LF, - STATE(335), 1, + [28054] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(654), 43, + ACTIONS(1061), 1, + anon_sym_LF, + ACTIONS(1063), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34311,18 +32335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30247] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1063), 1, - anon_sym_LF, - STATE(336), 1, + [28106] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1065), 43, + ACTIONS(690), 1, + anon_sym_LF, + ACTIONS(692), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34366,18 +32384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30308] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1067), 1, - anon_sym_LF, - STATE(337), 1, + [28158] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1069), 43, + ACTIONS(1065), 1, + anon_sym_LF, + ACTIONS(1067), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34421,27 +32433,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30369] = 6, + [28210] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1071), 1, - anon_sym_LF, - STATE(338), 1, sym_comment, - ACTIONS(1073), 43, - anon_sym_SEMI, + ACTIONS(858), 1, anon_sym_DOT, + ACTIONS(873), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(1069), 1, anon_sym_LBRACK, + STATE(357), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(629), 14, + anon_sym_EQ, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(627), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON_EQ, anon_sym_PLUS_PLUS, @@ -34457,76 +32480,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, anon_sym_LT_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30430] = 23, + [28271] = 13, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(712), 1, - anon_sym_LBRACE, - ACTIONS(722), 1, + sym_comment, + ACTIONS(915), 1, anon_sym_EQ, - ACTIONS(925), 1, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(929), 1, - anon_sym_COMMA, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - ACTIONS(941), 1, - anon_sym_PLUS_PLUS, ACTIONS(943), 1, - anon_sym_DASH_DASH, - ACTIONS(949), 1, anon_sym_AMP_AMP, - ACTIONS(951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1075), 1, - anon_sym_LT_DASH, - STATE(339), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, - STATE(755), 1, - aux_sym_expression_list_repeat1, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(947), 2, + ACTIONS(941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(935), 4, + ACTIONS(929), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(945), 4, + ACTIONS(939), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(933), 7, + ACTIONS(927), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -34534,8 +32524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(939), 12, + ACTIONS(913), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LT_DASH, anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34547,41 +32543,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30524] = 11, + anon_sym_PIPE_PIPE, + [28342] = 12, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(925), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_EQ, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - STATE(340), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(917), 14, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(941), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(929), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(939), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(927), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(915), 24, + ACTIONS(913), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -34600,49 +32599,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30594] = 16, + [28411] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(925), 1, + sym_comment, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - ACTIONS(949), 1, - anon_sym_AMP_AMP, - STATE(341), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(947), 2, + ACTIONS(915), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(935), 4, + ACTIONS(929), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(933), 7, + ACTIONS(927), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -34650,7 +32631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 19, + ACTIONS(913), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -34669,42 +32650,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30674] = 15, + [28476] = 20, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(917), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_LBRACE, + ACTIONS(828), 1, anon_sym_EQ, - ACTIONS(925), 1, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(923), 1, + anon_sym_COMMA, + ACTIONS(925), 1, anon_sym_LBRACK, - STATE(342), 1, - sym_comment, - STATE(378), 1, + ACTIONS(935), 1, + anon_sym_PLUS_PLUS, + ACTIONS(937), 1, + anon_sym_DASH_DASH, + ACTIONS(943), 1, + anon_sym_AMP_AMP, + ACTIONS(945), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1072), 1, + anon_sym_LT_DASH, + STATE(358), 1, sym_argument_list, - STATE(1127), 1, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(947), 2, + ACTIONS(941), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(935), 4, + ACTIONS(929), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(945), 4, + ACTIONS(939), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(933), 7, + ACTIONS(927), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -34712,14 +32708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LT_DASH, + ACTIONS(933), 12, anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -34731,43 +32721,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [30752] = 11, + [28561] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(856), 1, + sym_comment, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(871), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - STATE(343), 1, - sym_comment, - STATE(377), 1, - sym_literal_value, - STATE(828), 1, + STATE(358), 1, + sym_argument_list, + STATE(1146), 1, sym_type_arguments, - ACTIONS(654), 14, + ACTIONS(915), 7, anon_sym_EQ, - anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(927), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(652), 24, + ACTIONS(913), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -34792,26 +32775,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30822] = 11, + [28624] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(925), 1, + sym_comment, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - STATE(344), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(921), 14, + ACTIONS(915), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34826,7 +32803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(919), 24, + ACTIONS(913), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -34851,42 +32828,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30892] = 12, + [28685] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(925), 1, + sym_comment, + ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(927), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(925), 1, anon_sym_LBRACK, - STATE(345), 1, - sym_comment, - STATE(378), 1, + STATE(358), 1, sym_argument_list, - STATE(1127), 1, + STATE(1146), 1, sym_type_arguments, - ACTIONS(917), 7, + ACTIONS(911), 14, anon_sym_EQ, + anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(933), 7, - anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 24, + anon_sym_LT, + anon_sym_GT, + ACTIONS(909), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -34911,45 +32881,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30964] = 13, + [28746] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(925), 1, - anon_sym_DOT, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, - STATE(346), 1, sym_comment, - STATE(378), 1, - sym_argument_list, - STATE(1127), 1, - sym_type_arguments, - ACTIONS(917), 3, + ACTIONS(1074), 1, + anon_sym_LPAREN, + STATE(358), 1, + sym_special_argument_list, + ACTIONS(629), 14, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(935), 4, + anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(933), 7, - anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 24, + anon_sym_LT, + anon_sym_GT, + ACTIONS(627), 26, anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON_EQ, @@ -34972,20 +32930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31038] = 8, + [28800] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1080), 1, - anon_sym_LPAREN, - STATE(347), 1, sym_comment, - STATE(378), 1, - sym_special_argument_list, - ACTIONS(654), 14, + ACTIONS(804), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35000,9 +32948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 26, + ACTIONS(802), 27, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_LBRACE, @@ -35027,16 +32976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31101] = 6, + [28849] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(348), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(959), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35051,7 +32994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(995), 27, + ACTIONS(957), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35079,16 +33022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31159] = 6, + [28898] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(349), 1, sym_comment, - ACTIONS(1061), 14, + ACTIONS(1063), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35103,7 +33040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1059), 27, + ACTIONS(1061), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35131,16 +33068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31217] = 6, + [28947] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(350), 1, sym_comment, - ACTIONS(1009), 14, + ACTIONS(692), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35155,7 +33086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1007), 27, + ACTIONS(690), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35183,16 +33114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31275] = 6, + [28996] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(351), 1, sym_comment, - ACTIONS(981), 14, + ACTIONS(1055), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35207,7 +33132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(979), 27, + ACTIONS(1053), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35235,16 +33160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31333] = 6, + [29045] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(352), 1, sym_comment, - ACTIONS(1073), 14, + ACTIONS(1035), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35259,7 +33178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1071), 27, + ACTIONS(1033), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35287,16 +33206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31391] = 6, + [29094] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(353), 1, sym_comment, - ACTIONS(985), 14, + ACTIONS(1011), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35311,7 +33224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(983), 27, + ACTIONS(1009), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35339,16 +33252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31449] = 6, + [29143] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(354), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(1067), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35363,7 +33270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(991), 27, + ACTIONS(1065), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35391,16 +33298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31507] = 6, + [29192] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(355), 1, sym_comment, - ACTIONS(1037), 14, + ACTIONS(971), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35415,7 +33316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 27, + ACTIONS(969), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35443,16 +33344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31565] = 6, + [29241] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(356), 1, sym_comment, - ACTIONS(961), 14, + ACTIONS(951), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35467,7 +33362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 27, + ACTIONS(949), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35495,16 +33390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31623] = 6, + [29290] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(357), 1, sym_comment, - ACTIONS(957), 14, + ACTIONS(1007), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35519,7 +33408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(955), 27, + ACTIONS(1005), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35547,16 +33436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31681] = 6, + [29339] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(358), 1, sym_comment, - ACTIONS(965), 14, + ACTIONS(724), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35571,7 +33454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(963), 27, + ACTIONS(722), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35599,16 +33482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31739] = 6, + [29388] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(359), 1, sym_comment, - ACTIONS(1021), 14, + ACTIONS(752), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35623,7 +33500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1019), 27, + ACTIONS(750), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35651,16 +33528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31797] = 6, + [29437] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(360), 1, sym_comment, - ACTIONS(1013), 14, + ACTIONS(1027), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35675,7 +33546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1011), 27, + ACTIONS(1025), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35703,16 +33574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31855] = 6, + [29486] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(361), 1, sym_comment, - ACTIONS(1001), 14, + ACTIONS(629), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35727,7 +33592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(999), 27, + ACTIONS(627), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35755,16 +33620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31913] = 6, + [29535] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(362), 1, sym_comment, - ACTIONS(780), 14, + ACTIONS(1019), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35779,7 +33638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(778), 27, + ACTIONS(1017), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35807,16 +33666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31971] = 6, + [29584] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(363), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(963), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35831,7 +33684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(987), 27, + ACTIONS(961), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35859,16 +33712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32029] = 6, + [29633] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(364), 1, sym_comment, - ACTIONS(1005), 14, + ACTIONS(983), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35883,7 +33730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1003), 27, + ACTIONS(981), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35911,16 +33758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32087] = 6, + [29682] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(365), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(1059), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35935,7 +33776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(971), 27, + ACTIONS(1057), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -35963,16 +33804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32145] = 6, + [29731] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(366), 1, sym_comment, - ACTIONS(1029), 14, + ACTIONS(1043), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35987,7 +33822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1027), 27, + ACTIONS(1041), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36015,16 +33850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32203] = 6, + [29780] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(367), 1, sym_comment, - ACTIONS(812), 14, + ACTIONS(1039), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36039,7 +33868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(810), 27, + ACTIONS(1037), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36067,16 +33896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32261] = 6, + [29829] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(368), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(967), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36091,7 +33914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(967), 27, + ACTIONS(965), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36119,16 +33942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32319] = 6, + [29878] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(369), 1, sym_comment, - ACTIONS(1041), 14, + ACTIONS(975), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36143,7 +33960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1039), 27, + ACTIONS(973), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36171,16 +33988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32377] = 6, + [29927] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(370), 1, sym_comment, - ACTIONS(1033), 14, + ACTIONS(955), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36195,7 +34006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 27, + ACTIONS(953), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36223,16 +34034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32435] = 6, + [29976] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(371), 1, sym_comment, - ACTIONS(977), 14, + ACTIONS(1023), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36247,7 +34052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(975), 27, + ACTIONS(1021), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36275,16 +34080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32493] = 6, + [30025] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(372), 1, sym_comment, - ACTIONS(1057), 14, + ACTIONS(995), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36299,7 +34098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1055), 27, + ACTIONS(993), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36327,16 +34126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32551] = 6, + [30074] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(373), 1, sym_comment, - ACTIONS(1065), 14, + ACTIONS(1047), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36351,7 +34144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1063), 27, + ACTIONS(1045), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36379,16 +34172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32609] = 6, + [30123] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(374), 1, sym_comment, - ACTIONS(1053), 14, + ACTIONS(999), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36403,7 +34190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1051), 27, + ACTIONS(997), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36431,16 +34218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32667] = 6, + [30172] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(375), 1, sym_comment, - ACTIONS(1049), 14, + ACTIONS(991), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36455,7 +34236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1047), 27, + ACTIONS(989), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36483,16 +34264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32725] = 6, + [30221] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(376), 1, sym_comment, - ACTIONS(792), 14, + ACTIONS(987), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36507,7 +34282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(790), 27, + ACTIONS(985), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36535,16 +34310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32783] = 6, + [30270] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(377), 1, sym_comment, - ACTIONS(1069), 14, + ACTIONS(1051), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36559,7 +34328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1067), 27, + ACTIONS(1049), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36587,16 +34356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32841] = 6, + [30319] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(378), 1, sym_comment, - ACTIONS(1045), 14, + ACTIONS(979), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36611,7 +34374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1043), 27, + ACTIONS(977), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36639,16 +34402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32899] = 6, + [30368] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(379), 1, sym_comment, - ACTIONS(654), 14, + ACTIONS(1003), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36663,7 +34420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 27, + ACTIONS(1001), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36691,16 +34448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32957] = 6, + [30417] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(380), 1, sym_comment, - ACTIONS(1017), 14, + ACTIONS(1031), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36715,7 +34466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 27, + ACTIONS(1029), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -36743,16 +34494,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33015] = 6, + [30466] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(381), 1, sym_comment, - ACTIONS(820), 14, + ACTIONS(858), 1, + anon_sym_DOT, + ACTIONS(873), 1, + anon_sym_LPAREN, + ACTIONS(1069), 1, + anon_sym_LBRACK, + ACTIONS(1076), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(629), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36767,17 +34524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(818), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(627), 19, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LT_DASH, anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -36795,28 +34544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33073] = 12, + [30525] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(856), 1, + sym_comment, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(871), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_LBRACK, ACTIONS(1082), 1, - anon_sym_LBRACE, - STATE(382), 1, - sym_comment, - STATE(397), 1, - sym_literal_value, - STATE(828), 1, + anon_sym_LBRACK, + STATE(408), 1, + sym_argument_list, + STATE(1127), 1, sym_type_arguments, - ACTIONS(654), 14, + ACTIONS(915), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36831,7 +34572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 19, + ACTIONS(913), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -36851,51 +34592,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33141] = 16, + [30581] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(1084), 1, + sym_comment, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1086), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1088), 1, + ACTIONS(1082), 1, anon_sym_LBRACK, - ACTIONS(1098), 1, - anon_sym_AMP_AMP, - STATE(383), 1, - sym_comment, - STATE(396), 1, + STATE(408), 1, sym_argument_list, - STATE(1141), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(1096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1092), 4, + ACTIONS(911), 14, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1094), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1090), 7, - anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(909), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -36909,35 +34634,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33216] = 12, + [30637] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1084), 1, + sym_comment, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1086), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1088), 1, + ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(384), 1, - sym_comment, - STATE(396), 1, + STATE(408), 1, sym_argument_list, - STATE(1141), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(917), 7, + ACTIONS(915), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1086), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1090), 7, + ACTIONS(1084), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -36945,7 +34670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 19, + ACTIONS(913), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -36965,41 +34690,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33283] = 11, + [30697] = 12, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1084), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_EQ, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1086), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1088), 1, + ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(385), 1, - sym_comment, - STATE(396), 1, + STATE(408), 1, sym_argument_list, - STATE(1141), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(917), 14, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1086), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(1088), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1084), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(915), 19, + ACTIONS(913), 15, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -37013,47 +34740,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33348] = 15, + [30761] = 13, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(917), 1, + sym_comment, + ACTIONS(915), 1, anon_sym_EQ, - ACTIONS(1084), 1, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1086), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1088), 1, + ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(386), 1, - sym_comment, - STATE(396), 1, + ACTIONS(1092), 1, + anon_sym_AMP_AMP, + STATE(408), 1, sym_argument_list, - STATE(1141), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(1096), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1092), 4, + ACTIONS(1086), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1094), 4, + ACTIONS(1088), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1090), 7, + ACTIONS(1084), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -37061,7 +34780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 15, + ACTIONS(913), 14, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -37075,43 +34794,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33421] = 11, + [30827] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1084), 1, + sym_comment, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1086), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1088), 1, + ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(387), 1, - sym_comment, - STATE(396), 1, + STATE(408), 1, sym_argument_list, - STATE(1141), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(921), 14, + ACTIONS(915), 7, anon_sym_EQ, - anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1084), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(919), 19, + ACTIONS(913), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -37131,45 +34844,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33486] = 17, + [30885] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1084), 1, + sym_comment, + ACTIONS(1078), 1, anon_sym_DOT, - ACTIONS(1086), 1, + ACTIONS(1080), 1, anon_sym_LPAREN, - ACTIONS(1088), 1, + ACTIONS(1082), 1, anon_sym_LBRACK, - ACTIONS(1098), 1, + ACTIONS(1092), 1, anon_sym_AMP_AMP, - ACTIONS(1102), 1, + ACTIONS(1096), 1, anon_sym_EQ, - ACTIONS(1104), 1, + ACTIONS(1098), 1, anon_sym_PIPE_PIPE, - STATE(388), 1, - sym_comment, - STATE(396), 1, + STATE(408), 1, sym_argument_list, - STATE(1141), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(1096), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1092), 4, + ACTIONS(1086), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1094), 4, + ACTIONS(1088), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1090), 7, + ACTIONS(1084), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -37177,7 +34884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1100), 13, + ACTIONS(1094), 13, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -37191,76 +34898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33563] = 13, + [30953] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1084), 1, - anon_sym_DOT, - ACTIONS(1086), 1, - anon_sym_LPAREN, - ACTIONS(1088), 1, - anon_sym_LBRACK, - STATE(389), 1, sym_comment, - STATE(396), 1, - sym_argument_list, - STATE(1141), 1, - sym_type_arguments, - ACTIONS(917), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1092), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1090), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 19, - anon_sym_COMMA, - anon_sym_COLON_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_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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [33632] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1106), 1, + ACTIONS(1100), 1, anon_sym_LPAREN, - STATE(390), 1, - sym_comment, - STATE(396), 1, + STATE(408), 1, sym_special_argument_list, - ACTIONS(654), 14, + ACTIONS(629), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37275,7 +34920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 21, + ACTIONS(627), 21, anon_sym_DOT, anon_sym_COMMA, anon_sym_LBRACK, @@ -37297,16 +34942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33690] = 6, + [31002] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(391), 1, sym_comment, - ACTIONS(981), 14, + ACTIONS(1059), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37321,7 +34960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(979), 22, + ACTIONS(1057), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37344,16 +34983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33743] = 6, + [31046] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(392), 1, sym_comment, - ACTIONS(965), 14, + ACTIONS(629), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37368,7 +35001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(963), 22, + ACTIONS(627), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37391,16 +35024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33796] = 6, + [31090] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(393), 1, sym_comment, - ACTIONS(1037), 14, + ACTIONS(1067), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37415,7 +35042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 22, + ACTIONS(1065), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37438,16 +35065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33849] = 6, + [31134] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(394), 1, sym_comment, - ACTIONS(1033), 14, + ACTIONS(951), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37462,7 +35083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 22, + ACTIONS(949), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37485,16 +35106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33902] = 6, + [31178] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(395), 1, sym_comment, - ACTIONS(1073), 14, + ACTIONS(963), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37509,7 +35124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1071), 22, + ACTIONS(961), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37532,16 +35147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33955] = 6, + [31222] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(396), 1, sym_comment, - ACTIONS(1045), 14, + ACTIONS(983), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37556,7 +35165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1043), 22, + ACTIONS(981), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37579,16 +35188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34008] = 6, + [31266] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(397), 1, sym_comment, - ACTIONS(1069), 14, + ACTIONS(1011), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37603,7 +35206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1067), 22, + ACTIONS(1009), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37626,16 +35229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34061] = 6, + [31310] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(398), 1, sym_comment, - ACTIONS(1057), 14, + ACTIONS(1035), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37650,7 +35247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1055), 22, + ACTIONS(1033), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37673,16 +35270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34114] = 6, + [31354] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(399), 1, sym_comment, - ACTIONS(1065), 14, + ACTIONS(804), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37697,7 +35288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1063), 22, + ACTIONS(802), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37720,16 +35311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34167] = 6, + [31398] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(400), 1, sym_comment, - ACTIONS(1009), 14, + ACTIONS(971), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37744,7 +35329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1007), 22, + ACTIONS(969), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37767,16 +35352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34220] = 6, + [31442] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(401), 1, sym_comment, - ACTIONS(977), 14, + ACTIONS(959), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37791,7 +35370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(975), 22, + ACTIONS(957), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37814,16 +35393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34273] = 6, + [31486] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(402), 1, sym_comment, - ACTIONS(1041), 14, + ACTIONS(1039), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37838,7 +35411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1039), 22, + ACTIONS(1037), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37861,16 +35434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34326] = 6, + [31530] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(403), 1, sym_comment, - ACTIONS(654), 14, + ACTIONS(1023), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37885,7 +35452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 22, + ACTIONS(1021), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37908,16 +35475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34379] = 6, + [31574] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(404), 1, sym_comment, - ACTIONS(780), 14, + ACTIONS(979), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37932,7 +35493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(778), 22, + ACTIONS(977), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -37955,16 +35516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34432] = 6, + [31618] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(405), 1, sym_comment, - ACTIONS(1021), 14, + ACTIONS(1063), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -37979,7 +35534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1019), 22, + ACTIONS(1061), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38002,16 +35557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34485] = 6, + [31662] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(406), 1, sym_comment, - ACTIONS(989), 14, + ACTIONS(991), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38026,7 +35575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(987), 22, + ACTIONS(989), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38049,16 +35598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34538] = 6, + [31706] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(407), 1, sym_comment, - ACTIONS(1053), 14, + ACTIONS(692), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38073,7 +35616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1051), 22, + ACTIONS(690), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38096,16 +35639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34591] = 6, + [31750] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(408), 1, sym_comment, - ACTIONS(1049), 14, + ACTIONS(1007), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38120,7 +35657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1047), 22, + ACTIONS(1005), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38143,16 +35680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34644] = 6, + [31794] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(409), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(995), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38167,7 +35698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(971), 22, + ACTIONS(993), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38190,16 +35721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34697] = 6, + [31838] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(410), 1, sym_comment, - ACTIONS(820), 14, + ACTIONS(724), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38214,7 +35739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(818), 22, + ACTIONS(722), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38237,16 +35762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34750] = 6, + [31882] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(411), 1, sym_comment, - ACTIONS(957), 14, + ACTIONS(999), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38261,7 +35780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(955), 22, + ACTIONS(997), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38284,16 +35803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34803] = 6, + [31926] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(412), 1, sym_comment, - ACTIONS(1017), 14, + ACTIONS(1055), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38308,7 +35821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 22, + ACTIONS(1053), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38331,16 +35844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34856] = 6, + [31970] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(413), 1, sym_comment, - ACTIONS(1013), 14, + ACTIONS(987), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38355,7 +35862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1011), 22, + ACTIONS(985), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38378,16 +35885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34909] = 6, + [32014] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(414), 1, sym_comment, - ACTIONS(1001), 14, + ACTIONS(1003), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38402,7 +35903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(999), 22, + ACTIONS(1001), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38425,16 +35926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34962] = 6, + [32058] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(415), 1, sym_comment, - ACTIONS(961), 14, + ACTIONS(1031), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38449,7 +35944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 22, + ACTIONS(1029), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38472,16 +35967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35015] = 6, + [32102] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(416), 1, sym_comment, - ACTIONS(812), 14, + ACTIONS(1019), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38496,7 +35985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(810), 22, + ACTIONS(1017), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38519,16 +36008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35068] = 6, + [32146] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(417), 1, sym_comment, - ACTIONS(792), 14, + ACTIONS(1051), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38543,7 +36026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(790), 22, + ACTIONS(1049), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38566,16 +36049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35121] = 6, + [32190] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(418), 1, sym_comment, - ACTIONS(1029), 14, + ACTIONS(967), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38590,7 +36067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1027), 22, + ACTIONS(965), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38613,16 +36090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35174] = 6, + [32234] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(419), 1, sym_comment, - ACTIONS(1005), 14, + ACTIONS(1047), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38637,7 +36108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1003), 22, + ACTIONS(1045), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38660,16 +36131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35227] = 6, + [32278] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(420), 1, sym_comment, - ACTIONS(969), 14, + ACTIONS(955), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38684,7 +36149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(967), 22, + ACTIONS(953), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38707,16 +36172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35280] = 6, + [32322] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(421), 1, sym_comment, - ACTIONS(1061), 14, + ACTIONS(1027), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38731,7 +36190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1059), 22, + ACTIONS(1025), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38754,16 +36213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35333] = 6, + [32366] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(422), 1, sym_comment, - ACTIONS(985), 14, + ACTIONS(1043), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38778,7 +36231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(983), 22, + ACTIONS(1041), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38801,16 +36254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35386] = 6, + [32410] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(423), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(752), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38825,7 +36272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(991), 22, + ACTIONS(750), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38848,16 +36295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35439] = 6, + [32454] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(424), 1, sym_comment, - ACTIONS(997), 14, + ACTIONS(975), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -38872,7 +36313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(995), 22, + ACTIONS(973), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -38895,26 +36336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35492] = 11, + [32498] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(425), 1, - sym_comment, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(921), 7, + ACTIONS(915), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -38922,7 +36357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(919), 22, + ACTIONS(913), 22, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -38945,26 +36380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35553] = 11, + [32550] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(426), 1, - sym_comment, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(917), 7, + ACTIONS(911), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -38972,7 +36401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(915), 22, + ACTIONS(909), 22, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -38995,20 +36424,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35614] = 8, + [32602] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1114), 1, - anon_sym_LPAREN, - STATE(427), 1, sym_comment, - STATE(443), 1, + ACTIONS(1108), 1, + anon_sym_LPAREN, + STATE(429), 1, sym_special_argument_list, - ACTIONS(654), 8, + ACTIONS(629), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39017,7 +36440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 23, + ACTIONS(627), 23, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -39041,29 +36464,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35668] = 12, + [32647] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(370), 1, + sym_comment, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(856), 1, + ACTIONS(858), 1, anon_sym_DOT, - ACTIONS(1077), 1, + ACTIONS(1069), 1, anon_sym_LBRACK, - STATE(428), 1, - sym_comment, - STATE(441), 1, + STATE(434), 1, sym_literal_value, - STATE(828), 1, + STATE(817), 1, sym_type_arguments, - ACTIONS(871), 2, + ACTIONS(873), 2, anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(654), 7, + ACTIONS(629), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -39071,7 +36488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 19, + ACTIONS(627), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -39091,16 +36508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35730] = 6, + [32700] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(429), 1, sym_comment, - ACTIONS(780), 8, + ACTIONS(1007), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39109,7 +36520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(778), 24, + ACTIONS(1005), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39134,16 +36545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35779] = 6, + [32740] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(430), 1, sym_comment, - ACTIONS(997), 8, + ACTIONS(1043), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39152,7 +36557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(995), 24, + ACTIONS(1041), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39177,16 +36582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35828] = 6, + [32780] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(431), 1, sym_comment, - ACTIONS(1033), 8, + ACTIONS(1027), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39195,7 +36594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 24, + ACTIONS(1025), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39220,16 +36619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35877] = 6, + [32820] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(432), 1, sym_comment, - ACTIONS(973), 8, + ACTIONS(967), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39238,7 +36631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(971), 24, + ACTIONS(965), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39263,16 +36656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35926] = 6, + [32860] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(433), 1, sym_comment, - ACTIONS(1073), 8, + ACTIONS(1063), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39281,7 +36668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1071), 24, + ACTIONS(1061), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39306,16 +36693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35975] = 6, + [32900] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(434), 1, sym_comment, - ACTIONS(1041), 8, + ACTIONS(951), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39324,7 +36705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1039), 24, + ACTIONS(949), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39349,16 +36730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36024] = 6, + [32940] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(435), 1, sym_comment, - ACTIONS(977), 8, + ACTIONS(1051), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39367,7 +36742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(975), 24, + ACTIONS(1049), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39392,16 +36767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36073] = 6, + [32980] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(436), 1, sym_comment, - ACTIONS(812), 8, + ACTIONS(629), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39410,7 +36779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(810), 24, + ACTIONS(627), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39435,16 +36804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36122] = 6, + [33020] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(437), 1, sym_comment, - ACTIONS(1057), 8, + ACTIONS(1019), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39453,7 +36816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1055), 24, + ACTIONS(1017), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39478,16 +36841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36171] = 6, + [33060] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(438), 1, sym_comment, - ACTIONS(961), 8, + ACTIONS(1067), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39496,7 +36853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 24, + ACTIONS(1065), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39521,16 +36878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36220] = 6, + [33100] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(439), 1, sym_comment, - ACTIONS(957), 8, + ACTIONS(1031), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39539,7 +36890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(955), 24, + ACTIONS(1029), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39564,16 +36915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36269] = 6, + [33140] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(440), 1, sym_comment, - ACTIONS(1065), 8, + ACTIONS(1003), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39582,7 +36927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1063), 24, + ACTIONS(1001), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39607,16 +36952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36318] = 6, + [33180] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(441), 1, sym_comment, - ACTIONS(1069), 8, + ACTIONS(1059), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39625,7 +36964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1067), 24, + ACTIONS(1057), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39650,16 +36989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36367] = 6, + [33220] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(442), 1, sym_comment, - ACTIONS(1053), 8, + ACTIONS(1055), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39668,7 +37001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1051), 24, + ACTIONS(1053), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39693,16 +37026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36416] = 6, + [33260] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(443), 1, sym_comment, - ACTIONS(1045), 8, + ACTIONS(692), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39711,7 +37038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1043), 24, + ACTIONS(690), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39736,16 +37063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36465] = 6, + [33300] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(444), 1, sym_comment, - ACTIONS(1021), 8, + ACTIONS(999), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39754,7 +37075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1019), 24, + ACTIONS(997), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39779,16 +37100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36514] = 6, + [33340] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(445), 1, sym_comment, - ACTIONS(1049), 8, + ACTIONS(995), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39797,7 +37112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1047), 24, + ACTIONS(993), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39822,16 +37137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36563] = 6, + [33380] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(446), 1, sym_comment, - ACTIONS(820), 8, + ACTIONS(991), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39840,7 +37149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(818), 24, + ACTIONS(989), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39865,16 +37174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36612] = 6, + [33420] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(447), 1, sym_comment, - ACTIONS(1061), 8, + ACTIONS(987), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39883,7 +37186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1059), 24, + ACTIONS(985), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39908,16 +37211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36661] = 6, + [33460] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(448), 1, sym_comment, - ACTIONS(1017), 8, + ACTIONS(1047), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39926,7 +37223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 24, + ACTIONS(1045), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39951,16 +37248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36710] = 6, + [33500] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(449), 1, sym_comment, - ACTIONS(1013), 8, + ACTIONS(975), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -39969,7 +37260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1011), 24, + ACTIONS(973), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -39994,16 +37285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36759] = 6, + [33540] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(450), 1, sym_comment, - ACTIONS(981), 8, + ACTIONS(724), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40012,7 +37297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(979), 24, + ACTIONS(722), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40037,16 +37322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36808] = 6, + [33580] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(451), 1, sym_comment, - ACTIONS(965), 8, + ACTIONS(752), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40055,7 +37334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(963), 24, + ACTIONS(750), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40080,16 +37359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36857] = 6, + [33620] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(452), 1, sym_comment, - ACTIONS(654), 8, + ACTIONS(804), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40098,7 +37371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 24, + ACTIONS(802), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40123,16 +37396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36906] = 6, + [33660] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(453), 1, sym_comment, - ACTIONS(969), 8, + ACTIONS(1035), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40141,7 +37408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(967), 24, + ACTIONS(1033), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40166,16 +37433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36955] = 6, + [33700] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(454), 1, sym_comment, - ACTIONS(989), 8, + ACTIONS(1011), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40184,7 +37445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(987), 24, + ACTIONS(1009), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40209,16 +37470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37004] = 6, + [33740] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(455), 1, sym_comment, - ACTIONS(1037), 8, + ACTIONS(955), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40227,7 +37482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 24, + ACTIONS(953), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40252,16 +37507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37053] = 6, + [33780] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(456), 1, sym_comment, - ACTIONS(1029), 8, + ACTIONS(963), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40270,7 +37519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1027), 24, + ACTIONS(961), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40295,16 +37544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37102] = 6, + [33820] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(457), 1, sym_comment, - ACTIONS(993), 8, + ACTIONS(983), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40313,7 +37556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(991), 24, + ACTIONS(981), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40338,16 +37581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37151] = 6, + [33860] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(458), 1, sym_comment, - ACTIONS(985), 8, + ACTIONS(971), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40356,7 +37593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(983), 24, + ACTIONS(969), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40381,16 +37618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37200] = 6, + [33900] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(459), 1, sym_comment, - ACTIONS(1005), 8, + ACTIONS(979), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40399,7 +37630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1003), 24, + ACTIONS(977), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40424,16 +37655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37249] = 6, + [33940] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(460), 1, sym_comment, - ACTIONS(1001), 8, + ACTIONS(1023), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40442,7 +37667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(999), 24, + ACTIONS(1021), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40467,16 +37692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37298] = 6, + [33980] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(461), 1, sym_comment, - ACTIONS(1009), 8, + ACTIONS(1039), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40485,7 +37704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1007), 24, + ACTIONS(1037), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40510,16 +37729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37347] = 6, + [34020] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(462), 1, sym_comment, - ACTIONS(792), 8, + ACTIONS(959), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -40528,7 +37741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(790), 24, + ACTIONS(957), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -40553,482 +37766,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37396] = 25, + [34060] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1118), 1, - anon_sym_LF, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_LPAREN, - ACTIONS(1126), 1, - anon_sym_COMMA, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1130), 1, - anon_sym_LBRACK, - ACTIONS(1132), 1, - anon_sym_STAR, - ACTIONS(1134), 1, - anon_sym_struct, - ACTIONS(1136), 1, - anon_sym_interface, - ACTIONS(1138), 1, - anon_sym_map, - ACTIONS(1140), 1, - anon_sym_chan, - ACTIONS(1142), 1, - anon_sym_LT_DASH, - ACTIONS(1144), 1, - sym_raw_string_literal, - ACTIONS(1146), 1, - anon_sym_DQUOTE, - STATE(463), 1, sym_comment, - STATE(668), 1, - aux_sym_field_declaration_repeat1, - STATE(786), 1, - sym_qualified_type, - STATE(1063), 1, - sym_interpreted_string_literal, - ACTIONS(1120), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - STATE(850), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(796), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [37482] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, - anon_sym_LF, - ACTIONS(656), 1, - anon_sym_DOT, - ACTIONS(659), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(662), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1148), 1, - anon_sym_LBRACE, - STATE(464), 1, - sym_comment, - STATE(506), 1, - sym_literal_value, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [37542] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_PIPE, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(465), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(917), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(915), 5, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1160), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 7, + ACTIONS(913), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COLON_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37612] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(939), 1, + [34113] = 9, + ACTIONS(286), 1, + sym_comment, + ACTIONS(627), 1, anon_sym_LF, - ACTIONS(1164), 1, + ACTIONS(631), 1, anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(1168), 1, - anon_sym_COMMA, - ACTIONS(1170), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_AMP_AMP, - ACTIONS(1180), 1, - anon_sym_PIPE_PIPE, - STATE(466), 1, - sym_comment, - STATE(501), 1, - sym_argument_list, - STATE(835), 1, - aux_sym_expression_list_repeat1, - STATE(1160), 1, + ACTIONS(1116), 1, + anon_sym_LBRACE, + STATE(533), 1, + sym_literal_value, + STATE(817), 1, sym_type_arguments, - ACTIONS(722), 4, + ACTIONS(629), 24, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR, anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_case, anon_sym_default, - ACTIONS(1174), 4, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1172), 7, - anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [37684] = 13, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [34164] = 12, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - STATE(443), 1, + ACTIONS(1118), 1, + anon_sym_PIPE, + STATE(429), 1, sym_argument_list, - STATE(467), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(917), 5, + ACTIONS(1120), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(915), 4, anon_sym_EQ, - anon_sym_PIPE, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 14, + ACTIONS(913), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COLON_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37746] = 18, + [34221] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, - anon_sym_AMP_AMP, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(468), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(917), 2, + ACTIONS(915), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 6, + ACTIONS(913), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COLON_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37818] = 15, + [34282] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - STATE(443), 1, + ACTIONS(1126), 1, + anon_sym_AMP_AMP, + STATE(429), 1, sym_argument_list, - STATE(469), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(915), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1156), 3, + ACTIONS(1124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(917), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1152), 5, + ACTIONS(1122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 11, + ACTIONS(913), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COLON_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37884] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(722), 1, - anon_sym_EQ, - ACTIONS(937), 1, - anon_sym_LT_DASH, - ACTIONS(939), 1, - anon_sym_COLON_EQ, - ACTIONS(1184), 1, + [34345] = 15, + ACTIONS(286), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LF, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1188), 1, + ACTIONS(1132), 1, anon_sym_COMMA, - ACTIONS(1190), 1, + ACTIONS(1134), 1, anon_sym_LBRACK, - ACTIONS(1194), 1, - anon_sym_PIPE, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1206), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1208), 1, + ACTIONS(1144), 1, anon_sym_PIPE_PIPE, - STATE(470), 1, - sym_comment, - STATE(546), 1, + STATE(536), 1, sym_argument_list, - STATE(872), 1, + STATE(827), 1, aux_sym_expression_list_repeat1, - STATE(1182), 1, + STATE(1156), 1, sym_type_arguments, - ACTIONS(1200), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1204), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1198), 3, + ACTIONS(828), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1138), 4, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1202), 4, + ACTIONS(1140), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1192), 5, + ACTIONS(1136), 7, anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [37965] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(854), 1, + [34408] = 22, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(1210), 1, + ACTIONS(1148), 1, anon_sym_LF, - ACTIONS(1214), 1, + ACTIONS(1152), 1, + anon_sym_DOT, + ACTIONS(1154), 1, anon_sym_LPAREN, - ACTIONS(1216), 1, + ACTIONS(1156), 1, anon_sym_COMMA, - ACTIONS(1218), 1, - anon_sym_EQ, - ACTIONS(1220), 1, + ACTIONS(1158), 1, + anon_sym_func, + ACTIONS(1160), 1, anon_sym_LBRACK, - ACTIONS(1222), 1, + ACTIONS(1162), 1, anon_sym_STAR, - ACTIONS(1224), 1, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, + anon_sym_map, + ACTIONS(1170), 1, + anon_sym_chan, + ACTIONS(1172), 1, anon_sym_LT_DASH, - STATE(471), 1, - sym_comment, - STATE(748), 1, - aux_sym_const_spec_repeat1, - STATE(793), 1, + ACTIONS(1174), 1, + sym_raw_string_literal, + ACTIONS(1176), 1, + anon_sym_DQUOTE, + STATE(665), 1, + aux_sym_field_declaration_repeat1, + STATE(778), 1, sym_qualified_type, - STATE(1258), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(1212), 4, + STATE(1028), 1, + sym_interpreted_string_literal, + ACTIONS(1150), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(823), 9, + STATE(868), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -41038,28 +38094,106 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [38044] = 12, + [34485] = 11, + ACTIONS(286), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_LF, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_LBRACK, + STATE(536), 1, + sym_argument_list, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(1138), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1140), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(915), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1136), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [34539] = 9, + ACTIONS(286), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_LF, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_LBRACK, + STATE(536), 1, + sym_argument_list, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(1136), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(915), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_case, + anon_sym_default, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [34589] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(856), 1, + sym_comment, + ACTIONS(858), 1, anon_sym_DOT, - ACTIONS(871), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1069), 1, anon_sym_LBRACK, - ACTIONS(1226), 1, + ACTIONS(1178), 1, anon_sym_LBRACE, - STATE(472), 1, - sym_comment, - STATE(569), 1, + STATE(574), 1, sym_literal_value, - STATE(828), 1, + STATE(817), 1, sym_type_arguments, - ACTIONS(654), 7, + ACTIONS(629), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41067,7 +38201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 17, + ACTIONS(627), 17, anon_sym_COMMA, anon_sym_STAR, anon_sym_LT_DASH, @@ -41085,132 +38219,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38103] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_LF, - ACTIONS(1164), 1, - anon_sym_DOT, - ACTIONS(1166), 1, - anon_sym_LPAREN, - ACTIONS(1170), 1, - anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_AMP_AMP, - STATE(473), 1, - sym_comment, - STATE(501), 1, - sym_argument_list, - STATE(1160), 1, - sym_type_arguments, - ACTIONS(1174), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(917), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_PIPE_PIPE, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1172), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [38168] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_LF, - ACTIONS(1164), 1, - anon_sym_DOT, - ACTIONS(1166), 1, - anon_sym_LPAREN, - ACTIONS(1170), 1, - anon_sym_LBRACK, - STATE(474), 1, + [34639] = 10, + ACTIONS(286), 1, sym_comment, - STATE(501), 1, - sym_argument_list, - STATE(1160), 1, - sym_type_arguments, - ACTIONS(1174), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(917), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1172), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [38231] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(915), 1, + ACTIONS(913), 1, anon_sym_LF, - ACTIONS(1164), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + ACTIONS(1134), 1, anon_sym_LBRACK, - STATE(475), 1, - sym_comment, - STATE(501), 1, + STATE(536), 1, sym_argument_list, - STATE(1160), 1, + STATE(1156), 1, sym_type_arguments, - ACTIONS(1174), 4, + ACTIONS(1138), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1172), 7, + ACTIONS(1136), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -41218,7 +38247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(917), 13, + ACTIONS(915), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -41232,89 +38261,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38292] = 11, + [34691] = 20, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_LF, - ACTIONS(1164), 1, + sym_comment, + ACTIONS(828), 1, + anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_LT_DASH, + ACTIONS(933), 1, + anon_sym_COLON_EQ, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + ACTIONS(1184), 1, + anon_sym_COMMA, + ACTIONS(1186), 1, anon_sym_LBRACK, - STATE(476), 1, - sym_comment, - STATE(501), 1, + ACTIONS(1190), 1, + anon_sym_PIPE, + ACTIONS(1192), 1, + anon_sym_COLON, + ACTIONS(1202), 1, + anon_sym_AMP_AMP, + ACTIONS(1204), 1, + anon_sym_PIPE_PIPE, + STATE(572), 1, sym_argument_list, - STATE(1160), 1, + STATE(863), 1, + aux_sym_expression_list_repeat1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(921), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, + ACTIONS(1196), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1200), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1194), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(1198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, anon_sym_LT_EQ, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [38349] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(326), 1, + ACTIONS(1188), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [34763] = 16, + ACTIONS(286), 1, + sym_comment, + ACTIONS(366), 1, anon_sym_LF, - ACTIONS(1116), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1130), 1, + ACTIONS(1160), 1, anon_sym_LBRACK, - ACTIONS(1132), 1, + ACTIONS(1162), 1, anon_sym_STAR, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1142), 1, + ACTIONS(1172), 1, anon_sym_LT_DASH, - ACTIONS(1228), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - STATE(477), 1, - sym_comment, - STATE(786), 1, + STATE(778), 1, sym_qualified_type, - STATE(800), 2, + STATE(803), 2, sym_parameter_list, sym__simple_type, - ACTIONS(331), 7, + ACTIONS(371), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -41322,7 +38351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -41332,28 +38361,95 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [38422] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(915), 1, + [34827] = 19, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(286), 1, + sym_comment, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(1208), 1, anon_sym_LF, - ACTIONS(1164), 1, - anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(1212), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + ACTIONS(1214), 1, + anon_sym_COMMA, + ACTIONS(1216), 1, + anon_sym_EQ, + ACTIONS(1218), 1, anon_sym_LBRACK, - STATE(478), 1, + ACTIONS(1220), 1, + anon_sym_STAR, + ACTIONS(1222), 1, + anon_sym_LT_DASH, + STATE(747), 1, + aux_sym_const_spec_repeat1, + STATE(789), 1, + sym_qualified_type, + STATE(1185), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(1210), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [34897] = 13, + ACTIONS(286), 1, sym_comment, - STATE(501), 1, + ACTIONS(1094), 1, + anon_sym_LF, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_LBRACK, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1144), 1, + anon_sym_PIPE_PIPE, + STATE(536), 1, sym_argument_list, - STATE(1160), 1, + STATE(1156), 1, sym_type_arguments, - ACTIONS(1172), 7, + ACTIONS(1138), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1096), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1140), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1136), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -41361,72 +38457,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(917), 17, + [34955] = 12, + ACTIONS(286), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_LF, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_LBRACK, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + STATE(536), 1, + sym_argument_list, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(1138), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(915), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, anon_sym_case, anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(1140), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [38481] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(33), 1, + ACTIONS(1136), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [35011] = 19, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(854), 1, + ACTIONS(286), 1, + sym_comment, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1214), 1, + ACTIONS(1212), 1, anon_sym_LPAREN, - ACTIONS(1216), 1, + ACTIONS(1214), 1, anon_sym_COMMA, - ACTIONS(1220), 1, + ACTIONS(1218), 1, anon_sym_LBRACK, - ACTIONS(1222), 1, + ACTIONS(1220), 1, anon_sym_STAR, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_LT_DASH, - ACTIONS(1230), 1, + ACTIONS(1224), 1, anon_sym_LF, - ACTIONS(1234), 1, + ACTIONS(1228), 1, anon_sym_EQ, - STATE(471), 1, + STATE(476), 1, aux_sym_const_spec_repeat1, - STATE(479), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1215), 2, + STATE(1218), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(1232), 4, + ACTIONS(1226), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -41436,79 +38552,62 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [38560] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1100), 1, + [35081] = 8, + ACTIONS(286), 1, + sym_comment, + ACTIONS(913), 1, anon_sym_LF, - ACTIONS(1164), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + ACTIONS(1134), 1, anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_AMP_AMP, - ACTIONS(1180), 1, - anon_sym_PIPE_PIPE, - STATE(480), 1, - sym_comment, - STATE(501), 1, + STATE(536), 1, sym_argument_list, - STATE(1160), 1, + STATE(1156), 1, sym_type_arguments, - ACTIONS(1174), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1102), 5, + ACTIONS(915), 24, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_STAR, anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_case, anon_sym_default, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1172), 7, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38627] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(915), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [35129] = 8, + ACTIONS(286), 1, + sym_comment, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(1164), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + ACTIONS(1134), 1, anon_sym_LBRACK, - STATE(481), 1, - sym_comment, - STATE(501), 1, + STATE(536), 1, sym_argument_list, - STATE(1160), 1, + STATE(1156), 1, sym_type_arguments, - ACTIONS(917), 24, + ACTIONS(911), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR, @@ -41533,273 +38632,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38684] = 18, + [35177] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1184), 1, + sym_comment, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1190), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1194), 1, - anon_sym_PIPE, - ACTIONS(1206), 1, - anon_sym_AMP_AMP, - STATE(482), 1, - sym_comment, - STATE(546), 1, + STATE(572), 1, sym_argument_list, - STATE(1182), 1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(917), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1200), 2, + ACTIONS(1196), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1204), 2, + ACTIONS(915), 5, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1198), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(915), 4, + ACTIONS(1188), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(913), 12, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_COLON_EQ, - anon_sym_PIPE_PIPE, - ACTIONS(1202), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [38754] = 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [35228] = 12, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1164), 1, + sym_comment, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1166), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_AMP_AMP, - ACTIONS(1180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1236), 1, - anon_sym_LF, - STATE(483), 1, - sym_comment, - STATE(501), 1, + ACTIONS(1190), 1, + anon_sym_PIPE, + STATE(572), 1, sym_argument_list, - STATE(1160), 1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(1174), 4, - anon_sym_PIPE, + ACTIONS(1196), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1194), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1238), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(915), 4, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1172), 7, + ACTIONS(1188), 5, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38820] = 19, + ACTIONS(913), 9, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [35283] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(484), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1102), 2, + ACTIONS(1096), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1100), 3, + ACTIONS(1094), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON_EQ, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38892] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1164), 1, - anon_sym_DOT, - ACTIONS(1166), 1, + [35346] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_LF, + ACTIONS(1232), 1, anon_sym_LPAREN, - ACTIONS(1170), 1, + STATE(536), 1, + sym_special_argument_list, + ACTIONS(629), 26, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_AMP_AMP, - ACTIONS(1180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1242), 1, - anon_sym_LF, - STATE(485), 1, - sym_comment, - STATE(501), 1, - sym_argument_list, - STATE(1160), 1, - sym_type_arguments, - ACTIONS(1174), 4, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1244), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1172), 7, - anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38958] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, - anon_sym_LF, - ACTIONS(1246), 1, - anon_sym_LPAREN, - STATE(486), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [35387] = 13, + ACTIONS(286), 1, sym_comment, - STATE(501), 1, - sym_special_argument_list, - ACTIONS(654), 26, - anon_sym_SEMI, + ACTIONS(1128), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1234), 1, + anon_sym_LF, + STATE(536), 1, + sym_argument_list, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(1138), 4, anon_sym_PIPE, - anon_sym_case, - anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(1236), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1140), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [39008] = 11, + ACTIONS(1136), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [35444] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1184), 1, + sym_comment, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1190), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - STATE(487), 1, - sym_comment, - STATE(546), 1, + STATE(572), 1, sym_argument_list, - STATE(1182), 1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(921), 7, + ACTIONS(915), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41807,7 +38864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(919), 17, + ACTIONS(913), 17, anon_sym_COMMA, anon_sym_STAR, anon_sym_LT_DASH, @@ -41825,73 +38882,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39064] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1184), 1, + [35491] = 13, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1190), 1, + ACTIONS(1134), 1, anon_sym_LBRACK, - STATE(488), 1, - sym_comment, - STATE(546), 1, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1238), 1, + anon_sym_LF, + STATE(536), 1, sym_argument_list, - STATE(1182), 1, + STATE(1156), 1, sym_type_arguments, - ACTIONS(1200), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(917), 5, - anon_sym_EQ, + ACTIONS(1138), 4, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1240), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1140), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(1192), 5, + anon_sym_GT_EQ, + ACTIONS(1136), 7, anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 12, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + [35548] = 13, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, + anon_sym_LBRACK, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1144), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1242), 1, + anon_sym_LF, + STATE(536), 1, + sym_argument_list, + STATE(1156), 1, + sym_type_arguments, + ACTIONS(1138), 4, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(1244), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1140), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [39124] = 11, + ACTIONS(1136), 7, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [35605] = 8, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1184), 1, + sym_comment, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1190), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - STATE(489), 1, - sym_comment, - STATE(546), 1, + STATE(572), 1, sym_argument_list, - STATE(1182), 1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(917), 7, + ACTIONS(911), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41899,7 +38991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(915), 17, + ACTIONS(909), 17, anon_sym_COMMA, anon_sym_STAR, anon_sym_LT_DASH, @@ -41917,207 +39009,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39180] = 17, + [35652] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1184), 1, + sym_comment, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1190), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1190), 1, anon_sym_PIPE, - STATE(490), 1, - sym_comment, - STATE(546), 1, + STATE(572), 1, sym_argument_list, - STATE(1182), 1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(917), 2, + ACTIONS(915), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1200), 2, + ACTIONS(1196), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1204), 2, + ACTIONS(1200), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1198), 3, + ACTIONS(1194), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1202), 4, + ACTIONS(1198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(915), 5, + ACTIONS(913), 5, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_COLON_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1192), 5, + ACTIONS(1188), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39248] = 16, + [35711] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1164), 1, - anon_sym_DOT, - ACTIONS(1166), 1, - anon_sym_LPAREN, - ACTIONS(1170), 1, - anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_AMP_AMP, - ACTIONS(1180), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1248), 1, - anon_sym_LF, - STATE(491), 1, sym_comment, - STATE(501), 1, - sym_argument_list, - STATE(1160), 1, - sym_type_arguments, - ACTIONS(1174), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1250), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(1176), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1172), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [39314] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1184), 1, + ACTIONS(1180), 1, anon_sym_DOT, - ACTIONS(1186), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1190), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1190), 1, anon_sym_PIPE, - STATE(492), 1, - sym_comment, - STATE(546), 1, + ACTIONS(1202), 1, + anon_sym_AMP_AMP, + STATE(572), 1, sym_argument_list, - STATE(1182), 1, + STATE(1168), 1, sym_type_arguments, - ACTIONS(1200), 2, + ACTIONS(915), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(1196), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1198), 3, + ACTIONS(1200), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1194), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(917), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1192), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 9, + ACTIONS(913), 4, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_COLON_EQ, + anon_sym_PIPE_PIPE, + ACTIONS(1198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [39378] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1047), 1, - anon_sym_LF, - STATE(493), 1, - sym_comment, - ACTIONS(1049), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1188), 5, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [39423] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_LF, - STATE(494), 1, + [35772] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1061), 27, + ACTIONS(965), 1, + anon_sym_LF, + ACTIONS(967), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42145,72 +39133,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39468] = 21, + [35808] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1252), 1, + ACTIONS(1246), 1, anon_sym_RPAREN, - ACTIONS(1254), 1, + ACTIONS(1248), 1, anon_sym_COMMA, - ACTIONS(1256), 1, + ACTIONS(1250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(495), 1, - sym_comment, - STATE(1070), 1, + STATE(1047), 1, aux_sym_argument_list_repeat1, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39543] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_LF, - STATE(496), 1, + [35874] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(957), 27, + ACTIONS(1009), 1, + anon_sym_LF, + ACTIONS(1011), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42238,18 +39214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39588] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1071), 1, - anon_sym_LF, - STATE(497), 1, + [35910] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1073), 27, + ACTIONS(1033), 1, + anon_sym_LF, + ACTIONS(1035), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42277,18 +39247,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39633] = 6, + [35946] = 20, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1019), 1, - anon_sym_LF, - STATE(498), 1, sym_comment, - ACTIONS(1021), 27, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(618), 1, + anon_sym_RPAREN, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(865), 1, + anon_sym_COMMA, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1268), 1, + anon_sym_DOT, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1274), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1276), 1, + anon_sym_STAR, + STATE(662), 1, + aux_sym_parameter_declaration_repeat1, + STATE(789), 1, + sym_qualified_type, + STATE(817), 1, + sym_type_arguments, + STATE(1023), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [36016] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1061), 1, + anon_sym_LF, + ACTIONS(1063), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42316,18 +39330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39678] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_LF, - STATE(499), 1, + [36052] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1013), 27, + ACTIONS(1057), 1, + anon_sym_LF, + ACTIONS(1059), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42355,18 +39363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39723] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(810), 1, - anon_sym_LF, - STATE(500), 1, + [36088] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(812), 27, + ACTIONS(1053), 1, + anon_sym_LF, + ACTIONS(1055), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42394,18 +39396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39768] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1043), 1, - anon_sym_LF, - STATE(501), 1, + [36124] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1045), 27, + ACTIONS(722), 1, + anon_sym_LF, + ACTIONS(724), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42433,18 +39429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39813] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(790), 1, - anon_sym_LF, - STATE(502), 1, + [36160] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(792), 27, + ACTIONS(985), 1, + anon_sym_LF, + ACTIONS(987), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42472,18 +39462,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39858] = 6, + [36196] = 9, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_LF, - STATE(503), 1, sym_comment, - ACTIONS(1033), 27, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(631), 1, + anon_sym_DOT, + ACTIONS(873), 1, + anon_sym_LPAREN, + ACTIONS(1069), 1, + anon_sym_LBRACK, + STATE(434), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(629), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(627), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [36244] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1278), 1, + anon_sym_LPAREN, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, + sym_qualified_type, + STATE(829), 2, + sym_parameter_list, + sym__simple_type, + ACTIONS(366), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [36304] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1045), 1, + anon_sym_LF, + ACTIONS(1047), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42511,18 +39579,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39903] = 6, + [36340] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_LF, - STATE(504), 1, sym_comment, - ACTIONS(1029), 27, + ACTIONS(933), 1, + anon_sym_COLON_EQ, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1184), 1, + anon_sym_COMMA, + ACTIONS(1282), 1, + anon_sym_DOT, + ACTIONS(1286), 1, + anon_sym_LBRACE, + ACTIONS(1288), 1, + anon_sym_PIPE, + ACTIONS(1298), 1, + anon_sym_AMP_AMP, + ACTIONS(1300), 1, + anon_sym_PIPE_PIPE, + STATE(429), 1, + sym_argument_list, + STATE(863), 1, + aux_sym_expression_list_repeat1, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1292), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1290), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1294), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1284), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [36406] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1041), 1, + anon_sym_LF, + ACTIONS(1043), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42550,18 +39660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39948] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1055), 1, - anon_sym_LF, - STATE(505), 1, + [36442] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1057), 27, + ACTIONS(802), 1, + anon_sym_LF, + ACTIONS(804), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42589,18 +39693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39993] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1067), 1, - anon_sym_LF, - STATE(506), 1, + [36478] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1069), 27, + ACTIONS(1025), 1, + anon_sym_LF, + ACTIONS(1027), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42628,204 +39726,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40038] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + [36514] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(953), 1, + anon_sym_LF, + ACTIONS(955), 27, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1256), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1270), 1, - anon_sym_AMP_AMP, - ACTIONS(1272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1274), 1, - anon_sym_RPAREN, - ACTIONS(1276), 1, - anon_sym_COMMA, - STATE(443), 1, - sym_argument_list, - STATE(507), 1, - sym_comment, - STATE(1094), 1, - aux_sym_argument_list_repeat1, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1264), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1268), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1262), 3, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1258), 5, - anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40113] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [36550] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1256), 1, + ACTIONS(1250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1278), 1, + ACTIONS(1302), 1, anon_sym_RPAREN, - ACTIONS(1280), 1, + ACTIONS(1304), 1, anon_sym_COMMA, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(508), 1, - sym_comment, - STATE(1034), 1, + STATE(1105), 1, aux_sym_argument_list_repeat1, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40188] = 6, + [36616] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_LF, - STATE(509), 1, sym_comment, - ACTIONS(1009), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(618), 1, anon_sym_COMMA, + ACTIONS(858), 1, + anon_sym_DOT, + ACTIONS(1069), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, + STATE(434), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(873), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(629), 5, anon_sym_PIPE, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, anon_sym_AMP, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [40233] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_LF, - STATE(510), 1, - sym_comment, - ACTIONS(1001), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(627), 15, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, anon_sym_LT_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40278] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(963), 1, - anon_sym_LF, - STATE(511), 1, + [36666] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(965), 27, + ACTIONS(1049), 1, + anon_sym_LF, + ACTIONS(1051), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42853,116 +39880,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40323] = 12, + [36702] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(871), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(441), 1, - sym_literal_value, - STATE(512), 1, - sym_comment, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(652), 17, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1250), 1, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [40380] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, - anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1188), 1, - anon_sym_COMMA, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1306), 1, + anon_sym_RPAREN, + ACTIONS(1308), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(513), 1, - sym_comment, - STATE(872), 1, - aux_sym_expression_list_repeat1, - STATE(1177), 1, + STATE(1110), 1, + aux_sym_argument_list_repeat1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(939), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40453] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_LF, - STATE(514), 1, + [36768] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1005), 27, + ACTIONS(1017), 1, + anon_sym_LF, + ACTIONS(1019), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -42990,118 +39961,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40498] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(624), 1, - anon_sym_COMMA, - ACTIONS(856), 1, - anon_sym_DOT, - ACTIONS(1077), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_literal_value, - STATE(515), 1, + [36804] = 3, + ACTIONS(286), 1, sym_comment, - STATE(828), 1, - sym_type_arguments, - ACTIONS(871), 2, + ACTIONS(1065), 1, + anon_sym_LF, + ACTIONS(1067), 27, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(654), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(652), 15, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40557] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1256), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, - anon_sym_PIPE, - ACTIONS(1270), 1, - anon_sym_AMP_AMP, - ACTIONS(1272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1282), 1, - anon_sym_RPAREN, - ACTIONS(1284), 1, - anon_sym_COMMA, - STATE(443), 1, - sym_argument_list, - STATE(516), 1, + [36840] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1015), 1, - aux_sym_argument_list_repeat1, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1264), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1268), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1262), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1266), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1258), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [40632] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(1029), 1, anon_sym_LF, - STATE(517), 1, - sym_comment, - ACTIONS(961), 27, + ACTIONS(1031), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43129,113 +40027,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40677] = 21, + [36876] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1256), 1, + ACTIONS(1250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1286), 1, + ACTIONS(1310), 1, anon_sym_RPAREN, - ACTIONS(1288), 1, + ACTIONS(1312), 1, anon_sym_COMMA, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(518), 1, - sym_comment, - STATE(1059), 1, + STATE(1056), 1, aux_sym_argument_list_repeat1, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40752] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1290), 1, - anon_sym_LPAREN, - STATE(519), 1, + [36942] = 3, + ACTIONS(286), 1, sym_comment, - STATE(546), 1, - sym_special_argument_list, - ACTIONS(654), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(652), 19, + ACTIONS(1001), 1, + anon_sym_LF, + ACTIONS(1003), 27, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40801] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1039), 1, - anon_sym_LF, - STATE(520), 1, + [36978] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1041), 27, + ACTIONS(997), 1, + anon_sym_LF, + ACTIONS(999), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43263,18 +40141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40846] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_LF, - STATE(521), 1, + [37014] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(985), 27, + ACTIONS(993), 1, + anon_sym_LF, + ACTIONS(995), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43302,123 +40174,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40891] = 18, + [37050] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(522), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(829), 2, - sym_parameter_list, - sym__simple_type, - ACTIONS(326), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [40960] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(939), 1, - anon_sym_COLON_EQ, - ACTIONS(1110), 1, + ACTIONS(1102), 1, + anon_sym_DOT, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1188), 1, - anon_sym_COMMA, - ACTIONS(1298), 1, - anon_sym_DOT, - ACTIONS(1302), 1, - anon_sym_LBRACE, - ACTIONS(1304), 1, + ACTIONS(1250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1314), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1316), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1314), 1, + anon_sym_RPAREN, + ACTIONS(1316), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(523), 1, - sym_comment, - STATE(872), 1, - aux_sym_expression_list_repeat1, - STATE(1177), 1, + STATE(1045), 1, + aux_sym_argument_list_repeat1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1300), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41035] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(778), 1, - anon_sym_LF, - STATE(524), 1, + [37116] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(780), 27, + ACTIONS(989), 1, + anon_sym_LF, + ACTIONS(991), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43446,72 +40255,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41080] = 21, + [37152] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1256), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, + ACTIONS(1110), 1, + anon_sym_DOT, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1318), 1, - anon_sym_RPAREN, - ACTIONS(1320), 1, + ACTIONS(1184), 1, anon_sym_COMMA, - STATE(443), 1, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + STATE(429), 1, sym_argument_list, - STATE(525), 1, - sym_comment, - STATE(1119), 1, - aux_sym_argument_list_repeat1, - STATE(1177), 1, + STATE(863), 1, + aux_sym_expression_list_repeat1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(933), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41155] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_LF, - STATE(526), 1, + [37216] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(989), 27, + ACTIONS(973), 1, + anon_sym_LF, + ACTIONS(975), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43539,18 +40335,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41200] = 6, + [37252] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(991), 1, - anon_sym_LF, - STATE(527), 1, sym_comment, - ACTIONS(993), 27, + ACTIONS(1318), 1, + anon_sym_LPAREN, + STATE(572), 1, + sym_special_argument_list, + ACTIONS(629), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(627), 19, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [37292] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(961), 1, + anon_sym_LF, + ACTIONS(963), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43578,18 +40403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41245] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(971), 1, - anon_sym_LF, - STATE(528), 1, + [37328] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(973), 27, + ACTIONS(981), 1, + anon_sym_LF, + ACTIONS(983), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43617,18 +40436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41290] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_LF, - STATE(529), 1, + [37364] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(997), 27, + ACTIONS(969), 1, + anon_sym_LF, + ACTIONS(971), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43656,18 +40469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41335] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_LF, - STATE(530), 1, + [37400] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(981), 27, + ACTIONS(957), 1, + anon_sym_LF, + ACTIONS(959), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43695,18 +40502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41380] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_LF, - STATE(531), 1, + [37436] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(969), 27, + ACTIONS(1037), 1, + anon_sym_LF, + ACTIONS(1039), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43734,18 +40535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41425] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_LF, - STATE(532), 1, + [37472] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1017), 27, + ACTIONS(1021), 1, + anon_sym_LF, + ACTIONS(1023), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43773,18 +40568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41470] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_LF, - STATE(533), 1, + [37508] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1037), 27, + ACTIONS(949), 1, + anon_sym_LF, + ACTIONS(951), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43812,18 +40601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41515] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(652), 1, - anon_sym_LF, - STATE(534), 1, + [37544] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(654), 27, + ACTIONS(977), 1, + anon_sym_LF, + ACTIONS(979), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43851,74 +40634,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41560] = 23, + [37580] = 18, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(624), 1, - anon_sym_RPAREN, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(863), 1, - anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1322), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1324), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1326), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1328), 1, + ACTIONS(1250), 1, anon_sym_DOT_DOT_DOT, - STATE(535), 1, - sym_comment, - STATE(666), 1, - aux_sym_parameter_declaration_repeat1, - STATE(793), 1, - sym_qualified_type, - STATE(828), 1, - sym_type_arguments, - STATE(1079), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [41639] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(975), 1, - anon_sym_LF, - STATE(536), 1, + ACTIONS(1254), 1, + anon_sym_PIPE, + ACTIONS(1264), 1, + anon_sym_AMP_AMP, + ACTIONS(1266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1320), 1, + anon_sym_RPAREN, + ACTIONS(1322), 1, + anon_sym_COMMA, + STATE(429), 1, + sym_argument_list, + STATE(1086), 1, + aux_sym_argument_list_repeat1, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1258), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1256), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1260), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [37646] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(977), 27, + ACTIONS(1005), 1, + anon_sym_LF, + ACTIONS(1007), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43946,18 +40715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41684] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1063), 1, - anon_sym_LF, - STATE(537), 1, + [37682] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1065), 27, + ACTIONS(750), 1, + anon_sym_LF, + ACTIONS(752), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -43985,18 +40748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41729] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1051), 1, - anon_sym_LF, - STATE(538), 1, + [37718] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1053), 27, + ACTIONS(690), 1, + anon_sym_LF, + ACTIONS(692), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -44024,18 +40781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41774] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(818), 1, - anon_sym_LF, - STATE(539), 1, + [37754] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(820), 27, + ACTIONS(627), 1, + anon_sym_LF, + ACTIONS(629), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -44063,16 +40814,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41819] = 6, + [37790] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1326), 1, + anon_sym_RPAREN, + ACTIONS(1328), 1, + anon_sym_COMMA, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + STATE(789), 1, + sym_qualified_type, + STATE(1026), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [37855] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(540), 1, sym_comment, - ACTIONS(957), 7, + ACTIONS(692), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44080,7 +40872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(955), 20, + ACTIONS(690), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44101,16 +40893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41863] = 6, + [37890] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(541), 1, sym_comment, - ACTIONS(1037), 7, + ACTIONS(1023), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44118,7 +40904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1035), 20, + ACTIONS(1021), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44139,16 +40925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41907] = 6, + [37925] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(542), 1, sym_comment, - ACTIONS(961), 7, + ACTIONS(1039), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44156,7 +40936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(959), 20, + ACTIONS(1037), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44177,168 +40957,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [41951] = 20, + [37960] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(939), 1, - anon_sym_LBRACE, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, - anon_sym_DOT, - ACTIONS(1304), 1, - anon_sym_PIPE, - ACTIONS(1314), 1, - anon_sym_AMP_AMP, - ACTIONS(1316), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1330), 1, - anon_sym_COMMA, - STATE(443), 1, - sym_argument_list, - STATE(543), 1, sym_comment, - STATE(1058), 1, - aux_sym_expression_list_repeat1, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(959), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1300), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [42023] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(939), 1, - anon_sym_SEMI, - ACTIONS(1110), 1, + ACTIONS(957), 20, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1154), 1, - anon_sym_PIPE, - ACTIONS(1182), 1, - anon_sym_AMP_AMP, - ACTIONS(1188), 1, anon_sym_COMMA, - ACTIONS(1240), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1332), 1, - anon_sym_DOT, - STATE(443), 1, - sym_argument_list, - STATE(544), 1, - sym_comment, - STATE(872), 1, - aux_sym_expression_list_repeat1, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1158), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1156), 3, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1152), 5, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42095] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1260), 1, - anon_sym_PIPE, - STATE(443), 1, - sym_argument_list, - STATE(545), 1, - sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1264), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1268), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1262), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(915), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1258), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [42159] = 6, + [37995] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(546), 1, sym_comment, - ACTIONS(1045), 7, + ACTIONS(971), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44346,7 +41000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1043), 20, + ACTIONS(969), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44367,16 +41021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42203] = 6, + [38030] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(547), 1, sym_comment, - ACTIONS(973), 7, + ACTIONS(983), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44384,7 +41032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(971), 20, + ACTIONS(981), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44405,16 +41053,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42247] = 6, + [38065] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1332), 1, + anon_sym_RPAREN, + ACTIONS(1334), 1, + anon_sym_COMMA, + STATE(789), 1, + sym_qualified_type, + STATE(1080), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [38130] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(548), 1, sym_comment, - ACTIONS(993), 7, + ACTIONS(963), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44422,7 +41111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(991), 20, + ACTIONS(961), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44443,16 +41132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42291] = 6, + [38165] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(549), 1, sym_comment, - ACTIONS(969), 7, + ACTIONS(975), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44460,7 +41143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(967), 20, + ACTIONS(973), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44481,16 +41164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42335] = 6, + [38200] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(550), 1, sym_comment, - ACTIONS(1017), 7, + ACTIONS(991), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44498,7 +41175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1015), 20, + ACTIONS(989), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44519,16 +41196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42379] = 6, + [38235] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(551), 1, sym_comment, - ACTIONS(1041), 7, + ACTIONS(995), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44536,7 +41207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1039), 20, + ACTIONS(993), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44557,69 +41228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42423] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1336), 1, - anon_sym_RPAREN, - ACTIONS(1338), 1, - anon_sym_COMMA, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - STATE(552), 1, - sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1040), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [42497] = 6, + [38270] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(553), 1, sym_comment, - ACTIONS(820), 7, + ACTIONS(999), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44627,7 +41239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(818), 20, + ACTIONS(997), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44648,65 +41260,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42541] = 17, + [38305] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1260), 1, - anon_sym_PIPE, - ACTIONS(1270), 1, - anon_sym_AMP_AMP, - STATE(443), 1, - sym_argument_list, - STATE(554), 1, sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(629), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(627), 20, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(915), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - ACTIONS(1266), 4, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [38340] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_DOT, + ACTIONS(873), 1, + anon_sym_LPAREN, + ACTIONS(1069), 1, + anon_sym_LBRACK, + STATE(434), 1, + sym_literal_value, + STATE(817), 1, + sym_type_arguments, + ACTIONS(629), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(627), 17, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42607] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [38385] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(555), 1, sym_comment, - ACTIONS(1049), 7, + ACTIONS(724), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44714,7 +41340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1047), 20, + ACTIONS(722), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44735,66 +41361,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42651] = 18, + [38420] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1298), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1300), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1336), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(556), 1, - sym_comment, - STATE(1177), 1, + STATE(1100), 1, + aux_sym_expression_list_repeat1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1342), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(1160), 4, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42719] = 6, + [38483] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(557), 1, sym_comment, - ACTIONS(1053), 7, + ACTIONS(1031), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44802,7 +41418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1051), 20, + ACTIONS(1029), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44823,16 +41439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42763] = 6, + [38518] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(558), 1, sym_comment, - ACTIONS(812), 7, + ACTIONS(1019), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44840,7 +41450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(810), 20, + ACTIONS(1017), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44861,59 +41471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42807] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(856), 1, - anon_sym_DOT, - ACTIONS(871), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_LBRACK, - STATE(441), 1, - sym_literal_value, - STATE(559), 1, - sym_comment, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(652), 17, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [42861] = 6, + [38553] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(560), 1, sym_comment, - ACTIONS(654), 7, + ACTIONS(1051), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -44921,7 +41482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 20, + ACTIONS(1049), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -44942,118 +41503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [42905] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1344), 1, - anon_sym_RPAREN, - ACTIONS(1346), 1, - anon_sym_COMMA, - STATE(561), 1, - sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1023), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [42979] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, - anon_sym_DOT, - ACTIONS(1304), 1, - anon_sym_PIPE, - ACTIONS(1314), 1, - anon_sym_AMP_AMP, - STATE(443), 1, - sym_argument_list, - STATE(562), 1, - sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1308), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1312), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(915), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1300), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [43045] = 6, + [38588] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(563), 1, sym_comment, - ACTIONS(1013), 7, + ACTIONS(967), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45061,7 +41514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1011), 20, + ACTIONS(965), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45082,63 +41535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43089] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1260), 1, - anon_sym_PIPE, - STATE(443), 1, - sym_argument_list, - STATE(564), 1, - sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1264), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1262), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1258), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [43151] = 6, + [38623] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(565), 1, sym_comment, - ACTIONS(1009), 7, + ACTIONS(955), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45146,7 +41546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1007), 20, + ACTIONS(953), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45167,16 +41567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43195] = 6, + [38658] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(566), 1, sym_comment, - ACTIONS(1065), 7, + ACTIONS(1027), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45184,7 +41578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1063), 20, + ACTIONS(1025), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45205,54 +41599,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43239] = 6, + [38693] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(567), 1, sym_comment, - ACTIONS(780), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1110), 1, + anon_sym_DOT, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(915), 3, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(778), 20, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1284), 5, anon_sym_STAR, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, + ACTIONS(913), 12, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43283] = 6, + [38742] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(568), 1, sym_comment, - ACTIONS(965), 7, + ACTIONS(1043), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45260,7 +41649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(963), 20, + ACTIONS(1041), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45281,350 +41670,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43327] = 6, + [38777] = 12, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(569), 1, sym_comment, - ACTIONS(1069), 7, - anon_sym_EQ, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1110), 1, + anon_sym_DOT, + ACTIONS(1288), 1, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(915), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1067), 20, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(1292), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(1284), 5, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, + ACTIONS(913), 9, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43371] = 16, + [38830] = 13, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(570), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(915), 5, + ACTIONS(913), 5, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_COLON_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1300), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43435] = 15, + [38885] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - STATE(443), 1, + ACTIONS(1298), 1, + anon_sym_AMP_AMP, + STATE(429), 1, sym_argument_list, - STATE(571), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1308), 2, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1306), 3, + ACTIONS(1296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1300), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 9, + ACTIONS(913), 4, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_COLON_EQ, + anon_sym_PIPE_PIPE, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [43497] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1348), 1, - anon_sym_RPAREN, - ACTIONS(1350), 1, - anon_sym_COMMA, - STATE(572), 1, - sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1099), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [43571] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, - anon_sym_DOT, - STATE(443), 1, - sym_argument_list, - STATE(573), 1, - sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1308), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(917), 3, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1300), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 12, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [43629] = 20, + [38942] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1352), 1, - anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1361), 1, - anon_sym_LBRACE, - ACTIONS(1363), 1, - anon_sym_LT_DASH, - STATE(434), 1, - sym_block, - STATE(574), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(877), 2, - sym_parameter_list, - sym__simple_type, - ACTIONS(326), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [43701] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, + ACTIONS(1102), 1, anon_sym_DOT, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1256), 1, + ACTIONS(1250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(575), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1365), 2, + ACTIONS(1338), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1262), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43771] = 6, + [39003] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(576), 1, sym_comment, - ACTIONS(1021), 7, + ACTIONS(1047), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45632,7 +41852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1019), 20, + ACTIONS(1045), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45653,16 +41873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43815] = 6, + [39038] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(577), 1, sym_comment, - ACTIONS(977), 7, + ACTIONS(1003), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45670,7 +41884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(975), 20, + ACTIONS(1001), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45691,16 +41905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43859] = 6, + [39073] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(578), 1, sym_comment, - ACTIONS(1057), 7, + ACTIONS(987), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45708,7 +41916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1055), 20, + ACTIONS(985), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45729,16 +41937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43903] = 6, + [39108] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(579), 1, sym_comment, - ACTIONS(1073), 7, + ACTIONS(1007), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45746,7 +41948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1071), 20, + ACTIONS(1005), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45767,115 +41969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [43947] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1108), 1, - anon_sym_DOT, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - STATE(443), 1, - sym_argument_list, - STATE(580), 1, - sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1264), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(917), 3, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1258), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 12, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [44005] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(624), 1, - anon_sym_RBRACK, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(863), 1, - anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1326), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_DOT, - STATE(581), 1, - sym_comment, - STATE(666), 1, - aux_sym_parameter_declaration_repeat1, - STATE(793), 1, - sym_qualified_type, - STATE(828), 1, - sym_type_arguments, - STATE(1079), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [44081] = 6, + [39143] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(582), 1, sym_comment, - ACTIONS(997), 7, + ACTIONS(752), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45883,7 +41980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(995), 20, + ACTIONS(750), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45904,16 +42001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44125] = 6, + [39178] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(583), 1, sym_comment, - ACTIONS(1001), 7, + ACTIONS(951), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45921,7 +42012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(999), 20, + ACTIONS(949), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45942,24 +42033,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44169] = 6, + [39213] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(584), 1, sym_comment, - ACTIONS(985), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, + ACTIONS(933), 1, + anon_sym_SEMI, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1118), 1, + anon_sym_PIPE, + ACTIONS(1126), 1, + anon_sym_AMP_AMP, + ACTIONS(1184), 1, + anon_sym_COMMA, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1340), 1, + anon_sym_DOT, + STATE(429), 1, + sym_argument_list, + STATE(863), 1, + aux_sym_expression_list_repeat1, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1114), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1120), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1112), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [39276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(979), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(983), 20, + ACTIONS(977), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -45980,16 +42111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44213] = 6, + [39311] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(585), 1, sym_comment, - ACTIONS(1033), 7, + ACTIONS(1067), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -45997,7 +42122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1031), 20, + ACTIONS(1065), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46018,16 +42143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44257] = 6, + [39346] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(586), 1, sym_comment, - ACTIONS(1029), 7, + ACTIONS(1055), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -46035,7 +42154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1027), 20, + ACTIONS(1053), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46056,16 +42175,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44301] = 6, + [39381] = 19, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(587), 1, sym_comment, - ACTIONS(792), 7, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(618), 1, + anon_sym_RBRACK, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(865), 1, + anon_sym_COMMA, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_LBRACK, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1342), 1, + anon_sym_DOT, + STATE(662), 1, + aux_sym_parameter_declaration_repeat1, + STATE(789), 1, + sym_qualified_type, + STATE(817), 1, + sym_type_arguments, + STATE(1023), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [39448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1011), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -46073,7 +42234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(790), 20, + ACTIONS(1009), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46094,16 +42255,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44345] = 6, + [39483] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1344), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1351), 1, + anon_sym_STAR, + ACTIONS(1353), 1, + anon_sym_LBRACE, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + STATE(453), 1, + sym_block, + STATE(789), 1, + sym_qualified_type, + STATE(854), 2, + sym_parameter_list, + sym__simple_type, + ACTIONS(366), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [39546] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1102), 1, + anon_sym_DOT, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1258), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(915), 3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(913), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [39595] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(1359), 1, + anon_sym_COMMA, + STATE(789), 1, + sym_qualified_type, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1091), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [39660] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(588), 1, sym_comment, - ACTIONS(989), 7, + ACTIONS(804), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -46111,7 +42398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(987), 20, + ACTIONS(802), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46132,16 +42419,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44389] = 6, + [39695] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1102), 1, + anon_sym_DOT, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1254), 1, + anon_sym_PIPE, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(915), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1258), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1256), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(913), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [39748] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1102), 1, + anon_sym_DOT, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1254), 1, + anon_sym_PIPE, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1258), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1256), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1260), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(913), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [39803] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1102), 1, + anon_sym_DOT, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1254), 1, + anon_sym_PIPE, + ACTIONS(1264), 1, + anon_sym_AMP_AMP, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1258), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1256), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(913), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + ACTIONS(1260), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [39860] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(589), 1, sym_comment, - ACTIONS(981), 7, + ACTIONS(1035), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -46149,7 +42556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(979), 20, + ACTIONS(1033), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46170,16 +42577,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44433] = 6, + [39895] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1110), 1, + anon_sym_DOT, + ACTIONS(1118), 1, + anon_sym_PIPE, + ACTIONS(1126), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1114), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1120), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1361), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(1122), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1112), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [39954] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(590), 1, sym_comment, - ACTIONS(1061), 7, + ACTIONS(1063), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -46187,7 +42632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1059), 20, + ACTIONS(1061), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46208,16 +42653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44477] = 6, + [39989] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(591), 1, sym_comment, - ACTIONS(1005), 7, + ACTIONS(1059), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -46225,7 +42664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1003), 20, + ACTIONS(1057), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -46246,147 +42685,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [44521] = 18, + [40024] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1352), 1, - anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_LT_DASH, - STATE(592), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(829), 2, - sym_parameter_list, - sym__simple_type, - ACTIONS(326), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [44588] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1369), 1, - anon_sym_RBRACK, - ACTIONS(1371), 1, - anon_sym_COLON, - STATE(443), 1, + ACTIONS(1363), 1, + anon_sym_RPAREN, + ACTIONS(1365), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(593), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [44657] = 20, + [40084] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, sym_identifier, - ACTIONS(1340), 1, + ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1373), 1, + ACTIONS(1367), 1, anon_sym_RPAREN, - STATE(594), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1028), 2, + STATE(1083), 2, sym_parenthesized_type, sym__simple_type, STATE(1123), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46396,98 +42774,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44728] = 19, + [40146] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_PIPE, - ACTIONS(1182), 1, - anon_sym_AMP_AMP, - ACTIONS(1240), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1375), 1, - anon_sym_RBRACK, - ACTIONS(1377), 1, - anon_sym_COLON, - STATE(443), 1, - sym_argument_list, - STATE(595), 1, sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1158), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1156), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1160), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1152), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [44797] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, sym_identifier, - ACTIONS(1340), 1, + ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1379), 1, + ACTIONS(1369), 1, anon_sym_RPAREN, - STATE(596), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1028), 2, + STATE(1083), 2, sym_parenthesized_type, sym__simple_type, STATE(1123), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46497,2316 +42819,2293 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44868] = 19, + [40208] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1381), 1, + ACTIONS(1371), 1, anon_sym_RBRACK, - ACTIONS(1383), 1, + ACTIONS(1373), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(597), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [44937] = 20, + [40268] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1385), 1, - anon_sym_RPAREN, - STATE(598), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1123), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [45008] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1387), 1, - anon_sym_RPAREN, - ACTIONS(1389), 1, - anon_sym_COMMA, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(599), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1094), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45077] = 19, + [40326] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1391), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - ACTIONS(1393), 1, + ACTIONS(1377), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(600), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45146] = 18, + [40386] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1300), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(601), 1, - sym_comment, - STATE(1177), 1, + STATE(877), 1, + sym_block, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1100), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1264), 2, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45213] = 19, + [40446] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1395), 1, + ACTIONS(1379), 1, anon_sym_RBRACK, - ACTIONS(1397), 1, + ACTIONS(1381), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(602), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45282] = 18, + [40506] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1383), 1, + anon_sym_RPAREN, + STATE(789), 1, + sym_qualified_type, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1123), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [40568] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1314), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1316), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1385), 1, + anon_sym_RPAREN, + ACTIONS(1387), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(603), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1100), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(1308), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1300), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45349] = 19, + [40628] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1314), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1316), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1389), 1, + anon_sym_RBRACK, + ACTIONS(1391), 1, + anon_sym_COLON, + STATE(429), 1, sym_argument_list, - STATE(604), 1, - sym_comment, - STATE(876), 1, - sym_block, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1300), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45418] = 19, + [40688] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1399), 1, + ACTIONS(1393), 1, anon_sym_RBRACK, - ACTIONS(1401), 1, + ACTIONS(1395), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(605), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45487] = 19, + [40748] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1403), 1, + ACTIONS(1397), 1, anon_sym_RBRACK, - ACTIONS(1405), 1, + ACTIONS(1399), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(606), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45556] = 19, + [40808] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1407), 1, + ACTIONS(1401), 1, anon_sym_RBRACK, - ACTIONS(1409), 1, + ACTIONS(1403), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(607), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45625] = 19, + [40868] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1411), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, - anon_sym_COMMA, - STATE(443), 1, + ACTIONS(1405), 1, + anon_sym_RBRACK, + ACTIONS(1407), 1, + anon_sym_COLON, + STATE(429), 1, sym_argument_list, - STATE(608), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45694] = 19, + [40928] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(1417), 1, - anon_sym_COMMA, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(609), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1242), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45763] = 19, + [40986] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1419), 1, + ACTIONS(1409), 1, anon_sym_RBRACK, - ACTIONS(1421), 1, + ACTIONS(1411), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(610), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45832] = 20, + [41046] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1423), 1, - anon_sym_RPAREN, - STATE(611), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1123), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [45903] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(1427), 1, - anon_sym_COMMA, - STATE(443), 1, + ACTIONS(1413), 1, + anon_sym_RBRACK, + ACTIONS(1415), 1, + anon_sym_COLON, + STATE(429), 1, sym_argument_list, - STATE(612), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [45972] = 20, + [41106] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1429), 1, - anon_sym_RPAREN, - STATE(613), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1123), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [46043] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, + ACTIONS(1417), 1, anon_sym_RBRACK, - ACTIONS(1433), 1, + ACTIONS(1419), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(614), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46112] = 20, + [41166] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1435), 1, - anon_sym_RPAREN, - STATE(615), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1123), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [46183] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_RBRACK, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(616), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46252] = 18, + [41226] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1425), 1, + anon_sym_RPAREN, + ACTIONS(1427), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(617), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1242), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46319] = 19, + [41286] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1441), 1, + ACTIONS(1429), 1, anon_sym_RBRACK, - ACTIONS(1443), 1, + ACTIONS(1431), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(618), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46388] = 19, + [41346] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(789), 1, + sym_qualified_type, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1123), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [41408] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1445), 1, - anon_sym_RPAREN, - ACTIONS(1447), 1, - anon_sym_COMMA, - STATE(443), 1, + ACTIONS(1435), 1, + anon_sym_RBRACK, + ACTIONS(1437), 1, + anon_sym_COLON, + STATE(429), 1, sym_argument_list, - STATE(619), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46457] = 19, + [41468] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1449), 1, + ACTIONS(1439), 1, anon_sym_RBRACK, - ACTIONS(1451), 1, + ACTIONS(1441), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(620), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46526] = 19, + [41528] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1443), 1, + anon_sym_RPAREN, + STATE(789), 1, + sym_qualified_type, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1123), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [41590] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1445), 1, + anon_sym_RPAREN, + STATE(789), 1, + sym_qualified_type, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1123), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [41652] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1453), 1, - anon_sym_RPAREN, - ACTIONS(1455), 1, - anon_sym_COMMA, - STATE(443), 1, + ACTIONS(1447), 1, + anon_sym_RBRACK, + ACTIONS(1449), 1, + anon_sym_COLON, + STATE(429), 1, sym_argument_list, - STATE(621), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46595] = 19, + [41712] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1298), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1300), 1, anon_sym_PIPE_PIPE, - ACTIONS(1457), 1, - anon_sym_RBRACK, - ACTIONS(1459), 1, - anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(622), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1094), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46664] = 19, + [41770] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_RBRACK, - ACTIONS(1463), 1, - anon_sym_COLON, - STATE(443), 1, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(1453), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(623), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46733] = 19, + [41830] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1465), 1, + ACTIONS(1455), 1, anon_sym_RBRACK, - ACTIONS(1467), 1, + ACTIONS(1457), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(624), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46802] = 19, + [41890] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1344), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1351), 1, + anon_sym_STAR, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + STATE(789), 1, + sym_qualified_type, + STATE(829), 2, + sym_parameter_list, + sym__simple_type, + ACTIONS(366), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [41948] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1469), 1, + ACTIONS(1459), 1, anon_sym_RBRACK, - ACTIONS(1471), 1, + ACTIONS(1461), 1, anon_sym_COLON, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(625), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46871] = 19, + [42008] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1473), 1, - anon_sym_RBRACK, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(443), 1, + ACTIONS(1463), 1, + anon_sym_RPAREN, + ACTIONS(1465), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(626), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [46940] = 18, + [42068] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1242), 1, - anon_sym_LBRACE, - ACTIONS(1304), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1314), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1316), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(443), 1, + ACTIONS(1467), 1, + anon_sym_RPAREN, + ACTIONS(1469), 1, + anon_sym_COMMA, + STATE(429), 1, sym_argument_list, - STATE(627), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1300), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47006] = 18, + [42128] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1477), 1, - anon_sym_RBRACK, - STATE(443), 1, + ACTIONS(1471), 1, + anon_sym_COLON, + STATE(429), 1, sym_argument_list, - STATE(628), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47072] = 18, + [42185] = 16, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_func, + ACTIONS(1160), 1, + anon_sym_LBRACK, + ACTIONS(1162), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, + anon_sym_map, + ACTIONS(1170), 1, + anon_sym_chan, + ACTIONS(1172), 1, + anon_sym_LT_DASH, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1473), 1, + anon_sym_LF, + STATE(778), 1, + sym_qualified_type, + ACTIONS(1475), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + STATE(1078), 2, + sym_parameter_list, + sym__simple_type, + STATE(812), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [42244] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1479), 1, - anon_sym_COLON, - STATE(443), 1, + ACTIONS(1477), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_argument_list, - STATE(629), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47138] = 18, + [42301] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1298), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1300), 1, anon_sym_PIPE_PIPE, - ACTIONS(1481), 1, - anon_sym_RBRACK, - STATE(443), 1, + ACTIONS(1479), 1, + anon_sym_LBRACE, + STATE(429), 1, sym_argument_list, - STATE(630), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47204] = 18, + [42358] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1314), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1316), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1483), 1, - anon_sym_LBRACE, - STATE(443), 1, + ACTIONS(1481), 1, + anon_sym_SEMI, + STATE(429), 1, sym_argument_list, - STATE(631), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1300), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47270] = 18, + [42415] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1485), 1, + ACTIONS(1483), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(632), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47336] = 18, + [42472] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1487), 1, - anon_sym_SEMI, - STATE(443), 1, + ACTIONS(1485), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_argument_list, - STATE(633), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47402] = 18, + [42529] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1489), 1, + ACTIONS(1487), 1, anon_sym_RPAREN, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(634), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47468] = 18, + [42586] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1491), 1, - anon_sym_RPAREN, - STATE(443), 1, - sym_argument_list, - STATE(635), 1, - sym_comment, - STATE(1177), 1, + ACTIONS(1489), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47534] = 18, + [42643] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(443), 1, + ACTIONS(1491), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_argument_list, - STATE(636), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47600] = 18, + [42700] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1495), 1, + ACTIONS(1493), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(637), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47666] = 18, + [42757] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_func, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, + anon_sym_map, + ACTIONS(1170), 1, + anon_sym_chan, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_COMMA, + ACTIONS(1499), 1, + anon_sym_EQ, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1503), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_LT_DASH, + STATE(647), 1, + aux_sym_const_spec_repeat1, + STATE(778), 1, + sym_qualified_type, + STATE(875), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(812), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [42818] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1497), 1, - anon_sym_RPAREN, - STATE(443), 1, + ACTIONS(1507), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_argument_list, - STATE(638), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47732] = 18, + [42875] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(639), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47798] = 18, + [42932] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + STATE(789), 1, + sym_qualified_type, + STATE(1083), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1123), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(816), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [42991] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, ACTIONS(1110), 1, + anon_sym_DOT, + ACTIONS(1242), 1, + anon_sym_LBRACE, + ACTIONS(1288), 1, + anon_sym_PIPE, + ACTIONS(1298), 1, + anon_sym_AMP_AMP, + ACTIONS(1300), 1, + anon_sym_PIPE_PIPE, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1292), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1290), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1294), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1284), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [43048] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(640), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47864] = 18, + [43105] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, ACTIONS(1110), 1, + anon_sym_DOT, + ACTIONS(1254), 1, + anon_sym_PIPE, + ACTIONS(1264), 1, + anon_sym_AMP_AMP, + ACTIONS(1266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1513), 1, + anon_sym_RPAREN, + STATE(429), 1, + sym_argument_list, + STATE(1129), 1, + sym_type_arguments, + ACTIONS(1258), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1256), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1260), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [43162] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1503), 1, + ACTIONS(1515), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(641), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47930] = 18, + [43219] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(642), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [47996] = 20, + [43276] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1497), 1, anon_sym_COMMA, - ACTIONS(1511), 1, - anon_sym_EQ, - ACTIONS(1513), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - STATE(643), 1, - sym_comment, - STATE(651), 1, + ACTIONS(1519), 1, + anon_sym_EQ, + STATE(769), 1, aux_sym_const_spec_repeat1, - STATE(786), 1, + STATE(778), 1, sym_qualified_type, - STATE(847), 2, + STATE(865), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48816,769 +45115,501 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48066] = 18, + [43337] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1519), 1, + ACTIONS(1521), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(644), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48132] = 18, + [43394] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1314), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1316), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1521), 1, - anon_sym_LBRACE, - STATE(443), 1, + ACTIONS(1523), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_argument_list, - STATE(645), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1308), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1312), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1310), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1300), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48198] = 18, + [43451] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1523), 1, - anon_sym_RBRACK, - STATE(443), 1, + ACTIONS(1525), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_argument_list, - STATE(646), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48264] = 18, + [43508] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1525), 1, - anon_sym_RBRACK, - STATE(443), 1, + ACTIONS(1527), 1, + anon_sym_SEMI, + STATE(429), 1, sym_argument_list, - STATE(647), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48330] = 18, + [43565] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1527), 1, - anon_sym_RBRACK, - STATE(443), 1, + ACTIONS(1529), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_argument_list, - STATE(648), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48396] = 18, + [43622] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1529), 1, + ACTIONS(1531), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(649), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48462] = 19, + [43679] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_DOT_DOT_DOT, - STATE(650), 1, sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(1028), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1123), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [48530] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, - anon_sym_struct, - ACTIONS(1136), 1, - anon_sym_interface, - ACTIONS(1138), 1, - anon_sym_map, - ACTIONS(1140), 1, - anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1509), 1, - anon_sym_COMMA, - ACTIONS(1513), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, - anon_sym_STAR, - ACTIONS(1517), 1, - anon_sym_LT_DASH, - ACTIONS(1531), 1, - anon_sym_EQ, - STATE(651), 1, - sym_comment, - STATE(771), 1, - aux_sym_const_spec_repeat1, - STATE(786), 1, - sym_qualified_type, - STATE(852), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(796), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [48600] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1288), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1300), 1, anon_sym_PIPE_PIPE, ACTIONS(1533), 1, - anon_sym_RPAREN, - STATE(443), 1, + anon_sym_LBRACE, + STATE(429), 1, sym_argument_list, - STATE(652), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1292), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1290), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1284), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48666] = 18, + [43736] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1260), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1270), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1272), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, ACTIONS(1535), 1, - anon_sym_RPAREN, - STATE(443), 1, + anon_sym_RBRACK, + STATE(429), 1, sym_argument_list, - STATE(653), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1264), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1268), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1262), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1266), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1258), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48732] = 18, + [43793] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, ACTIONS(1537), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(654), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48798] = 18, + [43850] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, ACTIONS(1539), 1, anon_sym_RBRACK, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(655), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48864] = 18, + [43907] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1150), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, ACTIONS(1541), 1, - anon_sym_SEMI, - STATE(443), 1, + anon_sym_RPAREN, + STATE(429), 1, sym_argument_list, - STATE(656), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [48930] = 18, + [43964] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_LBRACK, - ACTIONS(1150), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_PIPE, - ACTIONS(1182), 1, - anon_sym_AMP_AMP, - ACTIONS(1240), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1543), 1, - anon_sym_RBRACK, - STATE(443), 1, - sym_argument_list, - STATE(657), 1, sym_comment, - STATE(1177), 1, - sym_type_arguments, - ACTIONS(1158), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1156), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1160), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1152), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [48996] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1130), 1, - anon_sym_LBRACK, - ACTIONS(1132), 1, - anon_sym_STAR, - ACTIONS(1134), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, - anon_sym_interface, - ACTIONS(1138), 1, - anon_sym_map, - ACTIONS(1140), 1, - anon_sym_chan, - ACTIONS(1142), 1, - anon_sym_LT_DASH, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LF, - STATE(658), 1, - sym_comment, - STATE(786), 1, - sym_qualified_type, - ACTIONS(1547), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - STATE(1072), 2, - sym_parameter_list, - sym__simple_type, - STATE(796), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [49064] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LBRACE, ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(1352), 1, + ACTIONS(1344), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(1347), 1, anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1355), 1, anon_sym_LT_DASH, - ACTIONS(1549), 1, - anon_sym_LBRACE, - STATE(402), 1, + STATE(329), 1, sym_block, - STATE(659), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1081), 2, + STATE(1085), 2, sym_parameter_list, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49588,91 +45619,79 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49131] = 17, + [44022] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1154), 1, + ACTIONS(1118), 1, anon_sym_PIPE, - ACTIONS(1182), 1, + ACTIONS(1126), 1, anon_sym_AMP_AMP, - ACTIONS(1240), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1551), 1, + ACTIONS(1543), 1, anon_sym_DOT, - STATE(443), 1, + STATE(429), 1, sym_argument_list, - STATE(660), 1, - sym_comment, - STATE(1177), 1, + STATE(1129), 1, sym_type_arguments, - ACTIONS(1158), 2, + ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1162), 2, + ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1156), 3, + ACTIONS(1120), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1160), 4, + ACTIONS(1122), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1152), 5, + ACTIONS(1112), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [49194] = 19, + [44076] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(1352), 1, + ACTIONS(1344), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(1347), 1, anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1355), 1, anon_sym_LT_DASH, - ACTIONS(1553), 1, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(588), 1, sym_block, - STATE(661), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1102), 2, + STATE(1070), 2, sym_parameter_list, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49682,45 +45701,40 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49261] = 19, + [44134] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1352), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_LT_DASH, - ACTIONS(1555), 1, - anon_sym_LBRACE, - STATE(520), 1, - sym_block, - STATE(662), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_COMMA, + STATE(774), 1, + aux_sym_parameter_declaration_repeat1, + STATE(789), 1, sym_qualified_type, - STATE(1041), 2, - sym_parameter_list, + STATE(1015), 1, sym__simple_type, - STATE(823), 9, + STATE(1113), 1, + sym_parenthesized_type, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49730,45 +45744,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49328] = 19, + [44194] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1344), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1559), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + ACTIONS(1549), 1, + anon_sym_LBRACE, + STATE(496), 1, + sym_block, + STATE(789), 1, sym_qualified_type, - STATE(1158), 1, - sym_parameter_declaration, - STATE(1028), 2, - sym_parenthesized_type, + STATE(1027), 2, + sym_parameter_list, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49778,45 +45786,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49395] = 19, + [44252] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1352), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_LT_DASH, - ACTIONS(1561), 1, - anon_sym_LBRACE, - STATE(551), 1, - sym_block, - STATE(664), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(1553), 1, + anon_sym_RBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1016), 2, - sym_parameter_list, + STATE(1170), 1, + sym_parameter_declaration, + STATE(1083), 2, + sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49826,45 +45828,40 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49462] = 19, + [44310] = 17, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1515), 1, + ACTIONS(1501), 1, + anon_sym_LBRACK, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - ACTIONS(1563), 1, - anon_sym_EQ, - ACTIONS(1565), 1, - anon_sym_LBRACK, - STATE(665), 1, - sym_comment, - STATE(703), 1, - sym_type_parameter_list, - STATE(786), 1, + ACTIONS(1555), 1, + anon_sym_COMMA, + STATE(773), 1, + aux_sym_field_declaration_repeat1, + STATE(778), 1, sym_qualified_type, - STATE(917), 2, + STATE(869), 1, sym_parenthesized_type, + STATE(870), 1, sym__simple_type, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49874,46 +45871,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49529] = 20, + [44370] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1567), 1, - anon_sym_COMMA, - STATE(666), 1, - sym_comment, - STATE(774), 1, - aux_sym_parameter_declaration_repeat1, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_RBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1010), 1, - sym__simple_type, - STATE(1065), 1, + STATE(1170), 1, + sym_parameter_declaration, + STATE(1083), 2, sym_parenthesized_type, - STATE(823), 9, + sym__simple_type, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49923,45 +45913,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49598] = 19, + [44428] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LBRACE, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(1352), 1, + ACTIONS(1344), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(1347), 1, anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1355), 1, anon_sym_LT_DASH, - ACTIONS(1569), 1, + ACTIONS(1559), 1, sym_identifier, - STATE(328), 1, + STATE(329), 1, sym_block, - STATE(667), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1030), 2, + STATE(1085), 2, sym_parameter_list, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -49971,46 +45955,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49665] = 20, + [44486] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - ACTIONS(1571), 1, - anon_sym_COMMA, - STATE(668), 1, - sym_comment, - STATE(773), 1, - aux_sym_field_declaration_repeat1, - STATE(786), 1, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(1563), 1, + anon_sym_LBRACK, + STATE(736), 1, + sym_type_parameter_list, + STATE(778), 1, sym_qualified_type, - STATE(867), 1, + STATE(905), 2, sym_parenthesized_type, - STATE(869), 1, sym__simple_type, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50020,45 +45997,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49734] = 19, + [44544] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(1352), 1, + ACTIONS(1344), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(1347), 1, anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1355), 1, anon_sym_LT_DASH, - STATE(328), 1, + ACTIONS(1565), 1, + anon_sym_LBRACE, + STATE(353), 1, sym_block, - STATE(669), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1030), 2, + STATE(1088), 2, sym_parameter_list, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50068,45 +46039,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49801] = 19, + [44602] = 16, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1344), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1573), 1, - anon_sym_RBRACK, - STATE(670), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + ACTIONS(1567), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_block, + STATE(789), 1, sym_qualified_type, - STATE(1158), 1, - sym_parameter_declaration, - STATE(1028), 2, - sym_parenthesized_type, + STATE(1104), 2, + sym_parameter_list, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50116,43 +46081,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49868] = 18, + [44660] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, anon_sym_RBRACK, - STATE(671), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50162,43 +46121,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49932] = 18, + [44715] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1577), 1, - anon_sym_type, - STATE(672), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + sym_identifier, + STATE(789), 1, sym_qualified_type, - STATE(1192), 2, + STATE(1020), 1, + sym_parameter_declaration, + STATE(1083), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50208,43 +46161,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [49996] = 18, + [44770] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1579), 1, - anon_sym_RBRACK, - STATE(673), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_type, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(1189), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50254,43 +46201,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50060] = 18, + [44825] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1581), 1, - anon_sym_type, - STATE(674), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1551), 1, + sym_identifier, + STATE(789), 1, sym_qualified_type, - STATE(1192), 2, + STATE(1170), 1, + sym_parameter_declaration, + STATE(1083), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50300,43 +46241,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50124] = 18, + [44880] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1583), 1, - anon_sym_type, - STATE(675), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1573), 1, + anon_sym_RBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1270), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50346,43 +46281,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50188] = 18, + [44935] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(866), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1557), 1, - sym_identifier, - STATE(676), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1575), 1, + anon_sym_type, + STATE(789), 1, sym_qualified_type, - STATE(1077), 1, - sym_parameter_declaration, - STATE(1028), 2, + STATE(1189), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50392,43 +46321,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50252] = 18, + [44990] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(866), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1557), 1, - sym_identifier, - STATE(677), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1577), 1, + anon_sym_RBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1158), 1, - sym_parameter_declaration, - STATE(1028), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50438,43 +46361,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50316] = 18, + [45045] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1585), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1579), 1, anon_sym_RBRACK, - STATE(678), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50484,43 +46401,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50380] = 18, + [45100] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1587), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1581), 1, anon_sym_RBRACK, - STATE(679), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50530,43 +46441,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50444] = 18, + [45155] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1583), 1, anon_sym_type, - STATE(680), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1192), 2, + STATE(1253), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50576,43 +46481,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50508] = 18, + [45210] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_RBRACK, - STATE(681), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1585), 1, + anon_sym_type, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(1189), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50622,43 +46521,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50572] = 18, + [45265] = 15, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1593), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1587), 1, anon_sym_RBRACK, - STATE(682), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50668,41 +46561,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50636] = 17, + [45320] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - STATE(683), 1, - sym_comment, - STATE(786), 1, + STATE(778), 1, sym_qualified_type, - STATE(909), 2, + STATE(886), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50712,41 +46599,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50697] = 17, + [45372] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(684), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1121), 2, + STATE(844), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50756,41 +46637,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50758] = 17, + [45424] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + sym_comment, + ACTIONS(262), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(877), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(1294), 1, + ACTIONS(1589), 1, + anon_sym_LPAREN, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(685), 1, - sym_comment, - STATE(793), 1, + STATE(241), 1, sym_qualified_type, - STATE(817), 2, + STATE(291), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50800,41 +46675,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50819] = 17, + [45476] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(686), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1199), 2, + STATE(1163), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50844,41 +46713,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50880] = 17, + [45528] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(687), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(824), 2, + STATE(818), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50888,41 +46751,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [50941] = 17, + [45580] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(688), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1012), 2, + STATE(1232), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50932,41 +46789,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51002] = 17, + [45632] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(278), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1603), 1, - anon_sym_LT_DASH, - STATE(238), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(689), 1, - sym_comment, - STATE(283), 2, + STATE(1187), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -50976,41 +46827,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51063] = 17, + [45684] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(690), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1231), 2, + STATE(819), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51020,41 +46865,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51124] = 17, + [45736] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(691), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + STATE(789), 1, sym_qualified_type, - STATE(844), 2, + STATE(818), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51064,41 +46903,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51185] = 17, + [45788] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_func, + ACTIONS(274), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(278), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1605), 1, + ACTIONS(1597), 1, anon_sym_LT_DASH, - STATE(692), 1, - sym_comment, - STATE(793), 1, + STATE(241), 1, sym_qualified_type, - STATE(840), 2, + STATE(284), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51108,41 +46941,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51246] = 17, + [45840] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(693), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1080), 2, + STATE(1063), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51152,41 +46979,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51307] = 17, + [45892] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(1347), 1, anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1599), 1, anon_sym_LT_DASH, - STATE(694), 1, - sym_comment, - STATE(793), 1, + STATE(789), 1, sym_qualified_type, - STATE(824), 2, + STATE(838), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51196,41 +47017,73 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51368] = 17, + [45944] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + sym_comment, + ACTIONS(262), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, + ACTIONS(1589), 1, + anon_sym_LPAREN, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(695), 1, + ACTIONS(1597), 1, + anon_sym_LT_DASH, + STATE(241), 1, + sym_qualified_type, + STATE(266), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(253), 9, + sym_generic_type, + sym_pointer_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_interface_type, + sym_map_type, + sym_channel_type, + sym_function_type, + [45996] = 14, + ACTIONS(3), 1, sym_comment, - STATE(793), 1, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_func, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, + ACTIONS(1589), 1, + anon_sym_LPAREN, + ACTIONS(1591), 1, + anon_sym_LBRACK, + ACTIONS(1593), 1, + anon_sym_STAR, + ACTIONS(1595), 1, + anon_sym_LT_DASH, + STATE(241), 1, sym_qualified_type, - STATE(1122), 2, + STATE(258), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51240,41 +47093,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51429] = 17, + [46048] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(696), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1270), 2, + STATE(1235), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51284,41 +47131,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51490] = 17, + [46100] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(697), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(818), 2, + STATE(1103), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51328,41 +47169,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51551] = 17, + [46152] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(698), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1252), 2, + STATE(1253), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51372,41 +47207,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51612] = 17, + [46204] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_func, + ACTIONS(274), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(278), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(699), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1601), 1, + anon_sym_chan, + STATE(241), 1, sym_qualified_type, - STATE(844), 2, + STATE(282), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51416,41 +47245,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51673] = 17, + [46256] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(262), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_func, + ACTIONS(274), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(278), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1605), 1, + ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(700), 1, - sym_comment, - STATE(793), 1, + STATE(241), 1, sym_qualified_type, - STATE(817), 2, + STATE(274), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51460,41 +47283,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51734] = 17, + [46308] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, + sym_comment, + ACTIONS(262), 1, sym_identifier, - ACTIONS(272), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(278), 1, + ACTIONS(274), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(278), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1607), 1, + ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(238), 1, + STATE(241), 1, sym_qualified_type, - STATE(701), 1, - sym_comment, - STATE(247), 2, + STATE(285), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51504,41 +47321,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51795] = 17, + [46360] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(877), 1, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(702), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1505), 1, + anon_sym_LT_DASH, + STATE(778), 1, sym_qualified_type, - STATE(1103), 2, + STATE(799), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51548,41 +47359,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51856] = 17, + [46412] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(262), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(274), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(278), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(703), 1, - sym_comment, - STATE(786), 1, + STATE(241), 1, sym_qualified_type, - STATE(910), 2, + STATE(281), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(253), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51592,41 +47397,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51917] = 17, + [46464] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(704), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1251), 2, + STATE(1089), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51636,41 +47435,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [51978] = 17, + [46516] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(705), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1046), 2, + STATE(1061), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51680,41 +47473,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52039] = 17, + [46568] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1517), 1, - anon_sym_LT_DASH, - STATE(706), 1, - sym_comment, - STATE(786), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(808), 2, + STATE(1224), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51724,41 +47511,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52100] = 17, + [46620] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1517), 1, - anon_sym_LT_DASH, - STATE(707), 1, - sym_comment, - STATE(786), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(805), 2, + STATE(1032), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51768,41 +47549,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52161] = 17, + [46672] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - STATE(708), 1, - sym_comment, - STATE(786), 1, + STATE(778), 1, sym_qualified_type, - STATE(803), 2, + STATE(801), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51812,41 +47587,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52222] = 17, + [46724] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + anon_sym_chan, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(709), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1603), 1, + anon_sym_LT_DASH, + STATE(789), 1, sym_qualified_type, - STATE(1187), 2, + STATE(841), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51856,41 +47625,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52283] = 17, + [46776] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(710), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1017), 2, + STATE(839), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51900,41 +47663,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52344] = 17, + [46828] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1609), 1, - anon_sym_LT_DASH, - STATE(711), 1, - sym_comment, - STATE(786), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(798), 2, + STATE(1031), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51944,41 +47701,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52405] = 17, + [46880] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(712), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1045), 2, + STATE(1171), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -51988,41 +47739,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52466] = 17, + [46932] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(713), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1241), 2, + STATE(1220), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52032,41 +47777,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52527] = 17, + [46984] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(278), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1607), 1, - anon_sym_LT_DASH, - STATE(238), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(714), 1, - sym_comment, - STATE(248), 2, + STATE(1206), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52076,41 +47815,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52588] = 17, + [47036] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, - anon_sym_map, - ACTIONS(622), 1, - anon_sym_chan, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(1357), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(879), 1, + anon_sym_map, + ACTIONS(883), 1, anon_sym_LT_DASH, - STATE(715), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1605), 1, + anon_sym_chan, + STATE(789), 1, sym_qualified_type, STATE(843), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52120,41 +47853,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52649] = 17, + [47088] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(716), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1234), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52164,41 +47891,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52710] = 17, + [47140] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(877), 1, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(717), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1607), 1, + anon_sym_LT_DASH, + STATE(778), 1, sym_qualified_type, - STATE(1192), 2, + STATE(807), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52208,41 +47929,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52771] = 17, + [47192] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(278), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1607), 1, - anon_sym_LT_DASH, - STATE(238), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(718), 1, - sym_comment, - STATE(257), 2, + STATE(1189), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52252,41 +47967,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52832] = 17, + [47244] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(278), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1603), 1, + ACTIONS(1355), 1, anon_sym_LT_DASH, - STATE(238), 1, + STATE(789), 1, sym_qualified_type, - STATE(719), 1, - sym_comment, - STATE(264), 2, + STATE(820), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52296,41 +48005,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52893] = 17, + [47296] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(272), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(278), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1503), 1, anon_sym_STAR, ACTIONS(1607), 1, anon_sym_LT_DASH, - STATE(238), 1, + STATE(778), 1, sym_qualified_type, - STATE(720), 1, - sym_comment, - STATE(268), 2, + STATE(809), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52340,41 +48043,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [52954] = 17, + [47348] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(721), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + STATE(789), 1, sym_qualified_type, - STATE(1114), 2, + STATE(839), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52384,41 +48081,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53015] = 17, + [47400] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(722), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1013), 2, + STATE(1249), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52428,41 +48119,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53076] = 17, + [47452] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(278), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(286), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1597), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1607), 1, - anon_sym_LT_DASH, - STATE(238), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(723), 1, - sym_comment, - STATE(261), 2, + STATE(1250), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52472,41 +48157,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53137] = 17, + [47504] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(724), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1120), 2, + STATE(1079), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52516,41 +48195,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53198] = 17, + [47556] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(877), 1, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(725), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1505), 1, + anon_sym_LT_DASH, + STATE(778), 1, sym_qualified_type, - STATE(1190), 2, + STATE(811), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52560,41 +48233,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53259] = 17, + [47608] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_func, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(41), 1, - anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - STATE(726), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1609), 1, + anon_sym_chan, + STATE(778), 1, sym_qualified_type, - STATE(819), 2, + STATE(810), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52604,41 +48271,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53320] = 17, + [47660] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(727), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1269), 2, + STATE(1081), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52648,41 +48309,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53381] = 17, + [47712] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(728), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + STATE(789), 1, sym_qualified_type, - STATE(1014), 2, + STATE(819), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52692,41 +48347,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53442] = 17, + [47764] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, + ACTIONS(879), 1, anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1611), 1, - anon_sym_chan, - STATE(729), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(843), 2, + STATE(1058), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52736,41 +48385,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53503] = 17, + [47816] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(730), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1256), 2, + STATE(1082), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52780,41 +48423,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53564] = 17, + [47868] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(877), 1, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1166), 1, + anon_sym_interface, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(731), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1505), 1, + anon_sym_LT_DASH, + STATE(778), 1, sym_qualified_type, - STATE(819), 2, + STATE(814), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52824,41 +48461,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53625] = 17, + [47920] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1324), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, - anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_LT_DASH, - STATE(732), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(826), 2, + STATE(1234), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52868,41 +48499,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53686] = 17, + [47972] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_func, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(39), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(41), 1, + ACTIONS(1170), 1, anon_sym_chan, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1355), 1, - anon_sym_func, - ACTIONS(1357), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1359), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - STATE(733), 1, - sym_comment, - STATE(793), 1, + STATE(778), 1, sym_qualified_type, - STATE(818), 2, + STATE(805), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52912,41 +48537,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53747] = 17, + [48024] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(883), 1, + anon_sym_LT_DASH, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1517), 1, - anon_sym_LT_DASH, - STATE(734), 1, - sym_comment, - STATE(786), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(815), 2, + STATE(1245), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -52956,41 +48575,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53808] = 17, + [48076] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, + sym_comment, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1158), 1, anon_sym_func, - ACTIONS(1134), 1, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(1168), 1, anon_sym_map, - ACTIONS(1507), 1, + ACTIONS(1170), 1, + anon_sym_chan, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, + ACTIONS(1501), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_LT_DASH, - ACTIONS(1613), 1, - anon_sym_chan, - STATE(735), 1, - sym_comment, - STATE(786), 1, + STATE(778), 1, sym_qualified_type, - STATE(813), 2, + STATE(893), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(812), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53000,41 +48613,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53869] = 17, + [48128] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(736), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1200), 2, + STATE(820), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53044,41 +48651,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53930] = 17, + [48180] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(737), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1266), 2, + STATE(1259), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53088,41 +48689,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [53991] = 17, + [48232] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, ACTIONS(879), 1, - anon_sym_chan, + anon_sym_map, ACTIONS(881), 1, + anon_sym_chan, + ACTIONS(883), 1, anon_sym_LT_DASH, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - STATE(738), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1280), 1, + anon_sym_LBRACK, + STATE(789), 1, sym_qualified_type, - STATE(1265), 2, + STATE(1256), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53132,41 +48727,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [54052] = 17, + [48284] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(272), 1, - anon_sym_func, - ACTIONS(278), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(282), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(284), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(1597), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1599), 1, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1601), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1607), 1, + ACTIONS(1599), 1, anon_sym_LT_DASH, - ACTIONS(1615), 1, - anon_sym_chan, - STATE(238), 1, + STATE(789), 1, sym_qualified_type, - STATE(739), 1, - sym_comment, - STATE(282), 2, + STATE(841), 2, sym_parenthesized_type, sym__simple_type, - STATE(246), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53176,41 +48765,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [54113] = 17, + [48336] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(868), 1, + anon_sym_func, + ACTIONS(879), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(881), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1280), 1, + anon_sym_LBRACK, + ACTIONS(1603), 1, anon_sym_LT_DASH, - STATE(740), 1, - sym_comment, - STATE(786), 1, + STATE(789), 1, sym_qualified_type, - STATE(811), 2, + STATE(838), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53220,41 +48803,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [54174] = 17, + [48388] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1116), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_func, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1136), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1138), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(1140), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(1507), 1, + ACTIONS(856), 1, + sym_identifier, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1513), 1, + ACTIONS(1347), 1, + anon_sym_func, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1515), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1609), 1, + ACTIONS(1355), 1, anon_sym_LT_DASH, - STATE(741), 1, - sym_comment, - STATE(786), 1, + STATE(789), 1, sym_qualified_type, - STATE(812), 2, + STATE(844), 2, sym_parenthesized_type, sym__simple_type, - STATE(796), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53264,85 +48841,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [54235] = 17, + [48440] = 14, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(866), 1, - anon_sym_func, - ACTIONS(877), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(879), 1, + ACTIONS(616), 1, anon_sym_chan, - ACTIONS(1294), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(742), 1, - sym_comment, - STATE(793), 1, - sym_qualified_type, - STATE(840), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(823), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [54296] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(33), 1, - anon_sym_struct, - ACTIONS(37), 1, - anon_sym_interface, - ACTIONS(854), 1, + ACTIONS(856), 1, sym_identifier, - ACTIONS(866), 1, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, anon_sym_func, - ACTIONS(877), 1, - anon_sym_map, - ACTIONS(879), 1, - anon_sym_chan, - ACTIONS(881), 1, - anon_sym_LT_DASH, - ACTIONS(1294), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1351), 1, anon_sym_STAR, - ACTIONS(1324), 1, - anon_sym_LPAREN, - STATE(743), 1, - sym_comment, - STATE(793), 1, + ACTIONS(1355), 1, + anon_sym_LT_DASH, + STATE(789), 1, sym_qualified_type, - STATE(826), 2, + STATE(843), 2, sym_parenthesized_type, sym__simple_type, - STATE(823), 9, + STATE(816), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -53352,18 +48879,12 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [54357] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(794), 1, - anon_sym_LF, - STATE(744), 1, + [48492] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(796), 17, + ACTIONS(694), 1, + anon_sym_LF, + ACTIONS(696), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -53381,18 +48902,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [54392] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(895), 1, - anon_sym_LF, - STATE(745), 1, + [48518] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(897), 17, + ACTIONS(673), 1, + anon_sym_LF, + ACTIONS(675), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -53410,18 +48925,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [54427] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(814), 1, - anon_sym_LF, - STATE(746), 1, + [48544] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(816), 17, + ACTIONS(702), 1, + anon_sym_LF, + ACTIONS(704), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -53439,18 +48948,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [54462] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(903), 1, + [48570] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1613), 1, anon_sym_LF, + ACTIONS(1615), 1, + anon_sym_COMMA, STATE(747), 1, - sym_comment, - ACTIONS(905), 17, + aux_sym_const_spec_repeat1, + ACTIONS(1611), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -53466,23 +48973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, - [54497] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1619), 1, - anon_sym_LF, - ACTIONS(1621), 1, - anon_sym_COMMA, - STATE(748), 2, + [48600] = 3, + ACTIONS(286), 1, sym_comment, - aux_sym_const_spec_repeat1, - ACTIONS(1617), 15, + ACTIONS(677), 1, + anon_sym_LF, + ACTIONS(679), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -53498,18 +48994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - [54534] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1619), 1, - anon_sym_LF, - STATE(749), 1, + sym_raw_string_literal, + anon_sym_DQUOTE, + [48626] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1617), 16, + ACTIONS(1613), 1, + anon_sym_LF, + ACTIONS(1611), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -53526,23 +49018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - [54568] = 6, + [48651] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(750), 1, sym_comment, - ACTIONS(796), 6, + ACTIONS(704), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(794), 10, + ACTIONS(702), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -53553,23 +49039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [54601] = 6, + [48675] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(751), 1, sym_comment, - ACTIONS(897), 6, + ACTIONS(696), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(895), 10, + ACTIONS(694), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -53580,23 +49060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [54634] = 6, + [48699] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(752), 1, sym_comment, - ACTIONS(816), 6, + ACTIONS(679), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(814), 10, + ACTIONS(677), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -53607,23 +49081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [54667] = 6, + [48723] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(753), 1, sym_comment, - ACTIONS(905), 6, + ACTIONS(675), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(903), 10, + ACTIONS(673), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -53634,19 +49102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [54700] = 6, + [48747] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1624), 1, - anon_sym_COMMA, - STATE(754), 2, sym_comment, + ACTIONS(1618), 1, + anon_sym_COMMA, + STATE(754), 1, aux_sym_expression_list_repeat1, - ACTIONS(1100), 13, + ACTIONS(1094), 13, anon_sym_EQ, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -53660,20 +49123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [54732] = 7, + [48772] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(929), 1, + sym_comment, + ACTIONS(923), 1, anon_sym_COMMA, STATE(754), 1, aux_sym_expression_list_repeat1, - STATE(755), 1, - sym_comment, - ACTIONS(1627), 13, + ACTIONS(1621), 13, anon_sym_EQ, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -53687,324 +49144,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [54766] = 15, + [48797] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1633), 1, + ACTIONS(1627), 1, anon_sym_RBRACE, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - STATE(756), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(992), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [54815] = 15, + [48835] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1637), 1, + ACTIONS(1631), 1, anon_sym_RBRACE, - STATE(757), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(992), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [54864] = 15, + [48873] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1639), 1, + ACTIONS(1633), 1, anon_sym_RBRACE, - STATE(758), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(958), 1, - sym__interface_body, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [54913] = 15, + [48911] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1641), 1, + ACTIONS(1635), 1, anon_sym_RBRACE, - STATE(759), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(996), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(976), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [54962] = 15, + [48949] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1643), 1, + ACTIONS(1637), 1, anon_sym_RBRACE, - STATE(760), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [55011] = 15, + [48987] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1645), 1, + ACTIONS(1639), 1, anon_sym_RBRACE, - STATE(761), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [55060] = 15, + [49025] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1647), 1, + ACTIONS(1641), 1, anon_sym_RBRACE, - STATE(762), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [55109] = 15, + [49063] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1649), 1, + ACTIONS(1643), 1, anon_sym_RBRACE, - STATE(763), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(964), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [55158] = 15, + [49101] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1164), 1, anon_sym_struct, - ACTIONS(1629), 1, + ACTIONS(1623), 1, sym_identifier, - ACTIONS(1631), 1, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - ACTIONS(1651), 1, + ACTIONS(1645), 1, anon_sym_RBRACE, - STATE(764), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [55207] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_COLON_EQ, - STATE(765), 1, + [49139] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1653), 12, + ACTIONS(1649), 1, + anon_sym_COLON_EQ, + ACTIONS(1647), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -54017,18 +49405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [55237] = 6, + [49160] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1659), 1, - anon_sym_COLON_EQ, - STATE(766), 1, sym_comment, - ACTIONS(1657), 12, + ACTIONS(1653), 1, + anon_sym_COLON_EQ, + ACTIONS(1651), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -54041,18 +49423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [55267] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1663), 1, - anon_sym_COLON_EQ, - STATE(767), 1, + [49181] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 12, + ACTIONS(1657), 1, + anon_sym_COLON_EQ, + ACTIONS(1655), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -54065,18 +49441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [55297] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1665), 1, - anon_sym_COLON_EQ, - STATE(768), 1, + [49202] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1657), 12, + ACTIONS(1659), 1, + anon_sym_COLON_EQ, + ACTIONS(1647), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -54089,52 +49459,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [55327] = 14, + [49223] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, + sym_comment, + ACTIONS(1661), 1, + anon_sym_COMMA, + STATE(769), 1, + aux_sym_const_spec_repeat1, + ACTIONS(1613), 5, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + ACTIONS(1611), 6, + anon_sym_func, anon_sym_struct, - ACTIONS(1629), 1, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, sym_identifier, - ACTIONS(1631), 1, + [49248] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(1623), 1, + sym_identifier, + ACTIONS(1625), 1, anon_sym_STAR, - ACTIONS(1635), 1, + ACTIONS(1629), 1, anon_sym_TILDE, - STATE(769), 1, - sym_comment, - STATE(900), 1, - sym_struct_term, - STATE(901), 1, + STATE(925), 1, sym_constraint_term, - STATE(991), 1, + STATE(927), 1, + sym_struct_term, + STATE(978), 1, sym_struct_type, - STATE(1083), 1, - sym__interface_body, - STATE(1100), 1, + STATE(1109), 1, sym_qualified_type, - STATE(1068), 4, + STATE(1077), 5, + sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [55373] = 7, + [49283] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + sym_comment, + ACTIONS(1664), 1, anon_sym_EQ, - ACTIONS(1669), 1, + ACTIONS(1666), 1, anon_sym_COLON_EQ, - STATE(770), 1, - sym_comment, - ACTIONS(1657), 11, + ACTIONS(1647), 11, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -54146,164 +49523,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [55405] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1671), 1, - anon_sym_COMMA, - STATE(771), 2, - sym_comment, - aux_sym_const_spec_repeat1, - ACTIONS(1619), 5, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, - ACTIONS(1617), 6, - anon_sym_func, - anon_sym_struct, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - sym_identifier, - [55437] = 6, + [49306] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(772), 1, sym_comment, - ACTIONS(1617), 6, + ACTIONS(1611), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(1619), 6, + ACTIONS(1613), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - [55466] = 7, + [49326] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1678), 1, - anon_sym_COMMA, - STATE(773), 2, sym_comment, + ACTIONS(1672), 1, + anon_sym_COMMA, + STATE(773), 1, aux_sym_field_declaration_repeat1, - ACTIONS(1676), 4, + ACTIONS(1670), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1674), 6, + ACTIONS(1668), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [55497] = 7, + [49350] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1685), 1, - anon_sym_COMMA, - STATE(774), 2, sym_comment, + ACTIONS(1679), 1, + anon_sym_COMMA, + STATE(774), 1, aux_sym_parameter_declaration_repeat1, - ACTIONS(1683), 4, + ACTIONS(1677), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1681), 6, + ACTIONS(1675), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [55528] = 6, + [49374] = 6, + ACTIONS(286), 1, + sym_comment, + ACTIONS(618), 1, + anon_sym_LF, + ACTIONS(1152), 1, + anon_sym_DOT, + ACTIONS(1682), 1, + anon_sym_LBRACK, + STATE(808), 1, + sym_type_arguments, + ACTIONS(620), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + sym_raw_string_literal, + anon_sym_DQUOTE, + [49399] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(775), 1, sym_comment, - ACTIONS(1690), 5, + ACTIONS(1686), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1688), 6, + ACTIONS(1684), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [55556] = 6, + [49418] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(776), 1, sym_comment, - ACTIONS(1694), 5, + ACTIONS(1690), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1692), 6, + ACTIONS(1688), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [55584] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(624), 1, + [49437] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(654), 1, anon_sym_LF, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1696), 1, + ACTIONS(1682), 1, anon_sym_LBRACK, - STATE(777), 1, - sym_comment, - STATE(804), 1, + STATE(800), 1, sym_type_arguments, - ACTIONS(626), 7, + ACTIONS(656), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54311,171 +49646,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [55618] = 6, + [49459] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(778), 1, sym_comment, - ACTIONS(1700), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, - ACTIONS(1698), 6, - anon_sym_func, - anon_sym_struct, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - sym_identifier, - [55645] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(1702), 1, + ACTIONS(1692), 1, sym_identifier, - ACTIONS(1704), 1, + ACTIONS(1694), 1, anon_sym_DOT, - ACTIONS(1706), 1, + ACTIONS(1696), 1, sym_blank_identifier, - ACTIONS(1708), 1, + ACTIONS(1698), 1, anon_sym_RPAREN, - ACTIONS(1710), 1, - sym_raw_string_literal, - STATE(779), 1, - sym_comment, - STATE(780), 1, - aux_sym_import_spec_list_repeat1, - STATE(1031), 1, - sym_dot, - STATE(1140), 1, - sym_interpreted_string_literal, - STATE(1186), 1, - sym_import_spec, - [55688] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_DQUOTE, - ACTIONS(1702), 1, - sym_identifier, - ACTIONS(1704), 1, - anon_sym_DOT, - ACTIONS(1706), 1, - sym_blank_identifier, - ACTIONS(1710), 1, + ACTIONS(1700), 1, sym_raw_string_literal, - ACTIONS(1712), 1, - anon_sym_RPAREN, - STATE(780), 1, - sym_comment, - STATE(782), 1, + STATE(784), 1, aux_sym_import_spec_list_repeat1, - STATE(1031), 1, + STATE(1094), 1, sym_dot, - STATE(1140), 1, + STATE(1142), 1, sym_interpreted_string_literal, - STATE(1186), 1, + STATE(1178), 1, sym_import_spec, - [55731] = 6, + [49493] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(781), 1, sym_comment, - ACTIONS(1716), 4, + ACTIONS(1704), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1714), 6, + ACTIONS(1702), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [55758] = 13, + [49511] = 11, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1718), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(1692), 1, sym_identifier, - ACTIONS(1721), 1, + ACTIONS(1694), 1, anon_sym_DOT, - ACTIONS(1724), 1, + ACTIONS(1696), 1, sym_blank_identifier, - ACTIONS(1727), 1, - anon_sym_RPAREN, - ACTIONS(1729), 1, + ACTIONS(1700), 1, sym_raw_string_literal, - ACTIONS(1732), 1, - anon_sym_DQUOTE, - STATE(1031), 1, + ACTIONS(1706), 1, + anon_sym_RPAREN, + STATE(779), 1, + aux_sym_import_spec_list_repeat1, + STATE(1094), 1, sym_dot, - STATE(1140), 1, + STATE(1142), 1, sym_interpreted_string_literal, - STATE(1186), 1, + STATE(1178), 1, sym_import_spec, - STATE(782), 2, - sym_comment, - aux_sym_import_spec_list_repeat1, - [55799] = 6, + [49545] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(783), 1, sym_comment, - ACTIONS(1737), 4, + ACTIONS(1710), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1735), 6, + ACTIONS(1708), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [55826] = 8, + [49563] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + sym_comment, + ACTIONS(1342), 1, anon_sym_DOT, - ACTIONS(1739), 1, + ACTIONS(1712), 1, anon_sym_LBRACK, - STATE(784), 1, - sym_comment, - STATE(828), 1, + STATE(817), 1, sym_type_arguments, - ACTIONS(624), 7, + ACTIONS(618), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -54483,69 +49739,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [55857] = 13, + [49585] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1714), 1, + sym_identifier, + ACTIONS(1717), 1, + anon_sym_DOT, + ACTIONS(1720), 1, + sym_blank_identifier, + ACTIONS(1723), 1, + anon_sym_RPAREN, + ACTIONS(1725), 1, + sym_raw_string_literal, + ACTIONS(1728), 1, + anon_sym_DQUOTE, + STATE(784), 1, + aux_sym_import_spec_list_repeat1, + STATE(1094), 1, + sym_dot, + STATE(1142), 1, + sym_interpreted_string_literal, + STATE(1178), 1, + sym_import_spec, + [49619] = 10, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1704), 1, + sym_comment, + ACTIONS(1694), 1, anon_sym_DOT, - ACTIONS(1741), 1, + ACTIONS(1731), 1, sym_identifier, - ACTIONS(1743), 1, + ACTIONS(1733), 1, sym_blank_identifier, - ACTIONS(1745), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1737), 1, sym_raw_string_literal, - ACTIONS(1749), 1, + ACTIONS(1739), 1, anon_sym_DQUOTE, - STATE(293), 1, + STATE(273), 1, sym_interpreted_string_literal, - STATE(785), 1, - sym_comment, - STATE(1093), 1, + STATE(1016), 1, sym_dot, - STATE(287), 2, + STATE(272), 2, sym_import_spec, sym_import_spec_list, - [55898] = 8, + [49651] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LF, - ACTIONS(1696), 1, + sym_comment, + ACTIONS(1743), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(786), 1, + anon_sym_STAR, + anon_sym_LT_DASH, + ACTIONS(1741), 6, + anon_sym_func, + anon_sym_struct, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + sym_identifier, + [49669] = 3, + ACTIONS(286), 1, sym_comment, - STATE(794), 1, - sym_type_arguments, - ACTIONS(639), 7, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - sym_raw_string_literal, - anon_sym_DQUOTE, - [55929] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(822), 1, + ACTIONS(770), 1, anon_sym_LF, - STATE(787), 1, - sym_comment, - ACTIONS(824), 8, + ACTIONS(772), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54554,18 +49813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [55955] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_LF, - STATE(788), 1, + [49686] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(909), 8, + ACTIONS(794), 1, + anon_sym_LF, + ACTIONS(796), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54574,18 +49827,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [55981] = 6, + [49703] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(700), 1, - anon_sym_LF, - STATE(789), 1, sym_comment, - ACTIONS(702), 8, + ACTIONS(1712), 1, + anon_sym_LBRACK, + STATE(828), 1, + sym_type_arguments, + ACTIONS(654), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + [49722] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(710), 1, + anon_sym_LF, + ACTIONS(712), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54594,18 +49856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56007] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(774), 1, - anon_sym_LF, - STATE(790), 1, + [49739] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(776), 8, + ACTIONS(901), 1, + anon_sym_LF, + ACTIONS(903), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54614,18 +49870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56033] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(850), 1, - anon_sym_LF, - STATE(791), 1, + [49756] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(852), 8, + ACTIONS(889), 1, + anon_sym_LF, + ACTIONS(891), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_LBRACK, @@ -54634,18 +49884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56059] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(826), 1, - anon_sym_LF, - STATE(792), 1, + [49773] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(828), 8, + ACTIONS(698), 1, + anon_sym_LF, + ACTIONS(700), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54654,39 +49898,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56085] = 7, + [49790] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1739), 1, - anon_sym_LBRACK, - STATE(793), 1, sym_comment, - STATE(825), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + ACTIONS(1712), 1, + anon_sym_LBRACK, + STATE(438), 1, + sym_literal_value, + STATE(828), 1, sym_type_arguments, - ACTIONS(637), 7, + ACTIONS(654), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [56113] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(708), 1, - anon_sym_LF, - STATE(794), 1, + [49812] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(710), 7, + ACTIONS(893), 1, + anon_sym_LF, + ACTIONS(895), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54694,17 +49927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56138] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + [49828] = 3, + ACTIONS(286), 1, + sym_comment, ACTIONS(762), 1, anon_sym_LF, - STATE(795), 1, - sym_comment, ACTIONS(764), 7, anon_sym_SEMI, anon_sym_EQ, @@ -54713,18 +49940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56163] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LF, - STATE(796), 1, + [49844] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(639), 7, + ACTIONS(665), 1, + anon_sym_LF, + ACTIONS(667), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54732,18 +49953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56188] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(684), 1, - anon_sym_LF, - STATE(797), 1, + [49860] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(686), 7, + ACTIONS(790), 1, + anon_sym_LF, + ACTIONS(792), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54751,18 +49966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56213] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(782), 1, - anon_sym_LF, - STATE(798), 1, + [49876] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(784), 7, + ACTIONS(848), 1, + anon_sym_LF, + ACTIONS(850), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54770,40 +49979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56238] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - ACTIONS(1739), 1, - anon_sym_LBRACK, - STATE(440), 1, - sym_literal_value, - STATE(799), 1, + [49892] = 3, + ACTIONS(286), 1, sym_comment, - STATE(825), 1, - sym_type_arguments, - ACTIONS(637), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [56269] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(834), 1, + ACTIONS(766), 1, anon_sym_LF, - STATE(800), 1, - sym_comment, - ACTIONS(836), 7, + ACTIONS(768), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54811,18 +49992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56294] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(830), 1, - anon_sym_LF, - STATE(801), 1, + [49908] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(832), 7, + ACTIONS(726), 1, + anon_sym_LF, + ACTIONS(728), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54830,18 +50005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56319] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(802), 1, - anon_sym_LF, - STATE(802), 1, + [49924] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(804), 7, + ACTIONS(738), 1, + anon_sym_LF, + ACTIONS(740), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54849,18 +50018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56344] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(688), 1, - anon_sym_LF, - STATE(803), 1, + [49940] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(690), 7, + ACTIONS(742), 1, + anon_sym_LF, + ACTIONS(744), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54868,18 +50031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56369] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(846), 1, - anon_sym_LF, - STATE(804), 1, + [49956] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(848), 7, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(907), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54887,18 +50044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56394] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(754), 1, - anon_sym_LF, - STATE(805), 1, + [49972] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(756), 7, + ACTIONS(897), 1, + anon_sym_LF, + ACTIONS(899), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54906,18 +50057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56419] = 6, + [49988] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(704), 1, - anon_sym_LF, - STATE(806), 1, sym_comment, - ACTIONS(706), 7, + ACTIONS(889), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + [50002] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LF, + ACTIONS(756), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54925,18 +50082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56444] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(899), 1, - anon_sym_LF, - STATE(807), 1, + [50018] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(901), 7, + ACTIONS(758), 1, + anon_sym_LF, + ACTIONS(760), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54944,18 +50095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56469] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(692), 1, - anon_sym_LF, - STATE(808), 1, + [50034] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(694), 7, + ACTIONS(726), 1, + anon_sym_LF, + ACTIONS(728), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -54963,36 +50108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56494] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(809), 1, + [50050] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(850), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [56517] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LF, - STATE(810), 1, - sym_comment, - ACTIONS(752), 7, + ACTIONS(728), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -55000,18 +50121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56542] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(770), 1, - anon_sym_LF, - STATE(811), 1, + [50066] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(772), 7, + ACTIONS(814), 1, + anon_sym_LF, + ACTIONS(816), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -55019,18 +50134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56567] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(692), 1, - anon_sym_LF, - STATE(812), 1, + [50082] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(694), 7, + ACTIONS(654), 1, + anon_sym_LF, + ACTIONS(656), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -55038,18 +50147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56592] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(692), 1, - anon_sym_LF, - STATE(813), 1, + [50098] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(694), 7, + ACTIONS(810), 1, + anon_sym_LF, + ACTIONS(812), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -55057,18 +50160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56617] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(680), 1, - anon_sym_LF, - STATE(814), 1, + [50114] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(682), 7, + ACTIONS(786), 1, + anon_sym_LF, + ACTIONS(788), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -55076,18 +50173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56642] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(798), 1, - anon_sym_LF, - STATE(815), 1, + [50130] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(800), 7, + ACTIONS(774), 1, + anon_sym_LF, + ACTIONS(776), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -55095,38 +50186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [56667] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1146), 1, - anon_sym_DQUOTE, - ACTIONS(1751), 1, - anon_sym_LF, - ACTIONS(1755), 1, - sym_raw_string_literal, - STATE(816), 1, - sym_comment, - STATE(1047), 1, - sym_interpreted_string_literal, - ACTIONS(1753), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [56699] = 5, + [50146] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(817), 1, sym_comment, - ACTIONS(692), 7, + ACTIONS(654), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55134,16 +50197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56721] = 5, + [50159] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(818), 1, sym_comment, - ACTIONS(754), 7, + ACTIONS(758), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55151,16 +50208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56743] = 5, + [50172] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(819), 1, sym_comment, - ACTIONS(798), 7, + ACTIONS(897), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55168,16 +50219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56765] = 5, + [50185] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(820), 1, sym_comment, - ACTIONS(704), 7, + ACTIONS(726), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55185,16 +50230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56787] = 5, + [50198] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(821), 1, sym_comment, - ACTIONS(700), 7, + ACTIONS(786), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55202,16 +50241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56809] = 5, + [50211] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(822), 1, sym_comment, - ACTIONS(750), 7, + ACTIONS(901), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55219,33 +50252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56831] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(823), 1, + [50224] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(637), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1094), 1, + anon_sym_LF, + ACTIONS(1745), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [56853] = 5, + STATE(822), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1096), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [50243] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(824), 1, sym_comment, - ACTIONS(692), 7, + ACTIONS(698), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55253,16 +50277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56875] = 5, + [50256] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(825), 1, sym_comment, - ACTIONS(708), 7, + ACTIONS(893), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55270,16 +50288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56897] = 5, + [50269] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(826), 1, sym_comment, - ACTIONS(770), 7, + ACTIONS(774), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55287,16 +50299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56919] = 5, + [50282] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(827), 1, sym_comment, - ACTIONS(684), 7, + ACTIONS(905), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55304,16 +50310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56941] = 5, + [50295] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1132), 1, + anon_sym_COMMA, + ACTIONS(1621), 1, + anon_sym_LF, + STATE(822), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1748), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [50314] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(828), 1, sym_comment, - ACTIONS(846), 7, + ACTIONS(766), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55321,16 +50335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56963] = 5, + [50327] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(829), 1, sym_comment, - ACTIONS(834), 7, + ACTIONS(742), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55338,35 +50346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [56985] = 7, + [50340] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1100), 1, - anon_sym_LF, - ACTIONS(1757), 1, - anon_sym_COMMA, - STATE(830), 2, - sym_comment, - aux_sym_expression_list_repeat1, - ACTIONS(1102), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [57011] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(831), 1, sym_comment, - ACTIONS(899), 7, + ACTIONS(794), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55374,16 +50357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57033] = 5, + [50353] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(832), 1, sym_comment, - ACTIONS(762), 7, + ACTIONS(790), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55391,16 +50368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57055] = 5, + [50366] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(833), 1, sym_comment, - ACTIONS(830), 7, + ACTIONS(810), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55408,58 +50379,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57077] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + [50379] = 7, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1152), 1, anon_sym_DOT, - ACTIONS(1228), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1760), 1, + ACTIONS(1750), 1, anon_sym_LF, - ACTIONS(1764), 1, + ACTIONS(1754), 1, anon_sym_PIPE, - STATE(658), 1, + STATE(628), 1, sym_parameter_list, - STATE(834), 1, - sym_comment, - ACTIONS(1762), 2, + ACTIONS(1752), 2, anon_sym_SEMI, anon_sym_RBRACE, - [57109] = 8, + [50402] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1168), 1, + sym_comment, + ACTIONS(738), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1627), 1, - anon_sym_LF, - STATE(830), 1, - aux_sym_expression_list_repeat1, - STATE(835), 1, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + [50415] = 7, + ACTIONS(286), 1, sym_comment, - ACTIONS(1766), 4, + ACTIONS(1152), 1, + anon_sym_DOT, + ACTIONS(1176), 1, + anon_sym_DQUOTE, + ACTIONS(1756), 1, + anon_sym_LF, + ACTIONS(1760), 1, + sym_raw_string_literal, + STATE(1111), 1, + sym_interpreted_string_literal, + ACTIONS(1758), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [57137] = 5, + [50438] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(836), 1, sym_comment, - ACTIONS(680), 7, + ACTIONS(710), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55467,16 +50433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57159] = 5, + [50451] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(837), 1, sym_comment, - ACTIONS(907), 7, + ACTIONS(762), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55484,16 +50444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57181] = 5, + [50464] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(838), 1, sym_comment, - ACTIONS(774), 7, + ACTIONS(754), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55501,16 +50455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57203] = 5, + [50477] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(839), 1, sym_comment, - ACTIONS(802), 7, + ACTIONS(848), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55518,16 +50466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57225] = 5, + [50490] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(840), 1, sym_comment, - ACTIONS(782), 7, + ACTIONS(665), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55535,16 +50477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57247] = 5, + [50503] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(841), 1, sym_comment, - ACTIONS(822), 7, + ACTIONS(726), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55552,16 +50488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57269] = 5, + [50516] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(842), 1, sym_comment, - ACTIONS(826), 7, + ACTIONS(770), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55569,16 +50499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57291] = 5, + [50529] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(843), 1, sym_comment, - ACTIONS(692), 7, + ACTIONS(726), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55586,16 +50510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57313] = 5, + [50542] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(844), 1, sym_comment, - ACTIONS(688), 7, + ACTIONS(814), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -55603,8963 +50521,6246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [57335] = 8, + [50555] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1768), 1, - anon_sym_LF, - ACTIONS(1770), 1, - anon_sym_SEMI, - STATE(845), 1, sym_comment, - STATE(851), 1, - aux_sym__statement_list_repeat1, - ACTIONS(1772), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [57362] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1774), 1, + ACTIONS(1762), 1, anon_sym_RBRACE, - ACTIONS(1776), 1, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1778), 1, + ACTIONS(1766), 1, anon_sym_default, - STATE(846), 1, - sym_comment, - STATE(858), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(1098), 2, + STATE(864), 3, sym_expression_case, sym_default_case, - [57391] = 7, + aux_sym_expression_switch_statement_repeat1, + [50573] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1780), 1, - anon_sym_LF, - ACTIONS(1784), 1, - anon_sym_EQ, - STATE(847), 1, sym_comment, - ACTIONS(1782), 4, - anon_sym_SEMI, + ACTIONS(1766), 1, + anon_sym_default, + ACTIONS(1768), 1, anon_sym_RBRACE, + ACTIONS(1770), 1, anon_sym_case, - anon_sym_default, - [57416] = 9, + STATE(860), 3, + sym_default_case, + sym_type_case, + aux_sym_type_switch_statement_repeat1, + [50591] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1146), 1, - anon_sym_DQUOTE, - ACTIONS(1786), 1, - anon_sym_LF, - ACTIONS(1790), 1, - sym_raw_string_literal, - STATE(848), 1, sym_comment, - STATE(1055), 1, - sym_interpreted_string_literal, - ACTIONS(1788), 2, - anon_sym_SEMI, + ACTIONS(1764), 1, + anon_sym_case, + ACTIONS(1766), 1, + anon_sym_default, + ACTIONS(1772), 1, anon_sym_RBRACE, - [57445] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_literal_value, - STATE(849), 1, + STATE(864), 3, + sym_expression_case, + sym_default_case, + aux_sym_expression_switch_statement_repeat1, + [50609] = 4, + ACTIONS(286), 1, sym_comment, - ACTIONS(637), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [57470] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1146), 1, - anon_sym_DQUOTE, - ACTIONS(1792), 1, + ACTIONS(1774), 1, anon_sym_LF, - ACTIONS(1796), 1, - sym_raw_string_literal, - STATE(850), 1, - sym_comment, - STATE(1050), 1, - sym_interpreted_string_literal, - ACTIONS(1794), 2, + ACTIONS(1778), 1, + anon_sym_else, + ACTIONS(1776), 4, anon_sym_SEMI, anon_sym_RBRACE, - [57499] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1798), 1, + anon_sym_case, + anon_sym_default, + [50625] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1780), 1, anon_sym_LF, - ACTIONS(1800), 1, + ACTIONS(1782), 1, anon_sym_SEMI, - STATE(851), 1, - sym_comment, - STATE(854), 1, + STATE(859), 1, aux_sym__statement_list_repeat1, - ACTIONS(210), 3, + ACTIONS(1784), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [57526] = 7, + [50643] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1802), 1, - anon_sym_LF, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(852), 1, sym_comment, - ACTIONS(1804), 4, - anon_sym_SEMI, + ACTIONS(1786), 1, anon_sym_RBRACE, + ACTIONS(1788), 1, anon_sym_case, + ACTIONS(1791), 1, anon_sym_default, - [57551] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(853), 1, - sym_comment, - ACTIONS(1808), 2, - sym_blank_identifier, - sym_identifier, - ACTIONS(1727), 4, - anon_sym_DOT, - anon_sym_RPAREN, - sym_raw_string_literal, - anon_sym_DQUOTE, - [57574] = 7, + STATE(850), 3, + sym_default_case, + sym_communication_case, + aux_sym_select_statement_repeat1, + [50661] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1810), 1, - anon_sym_LF, - ACTIONS(1813), 1, - anon_sym_SEMI, - STATE(854), 2, sym_comment, - aux_sym__statement_list_repeat1, - ACTIONS(1816), 3, + ACTIONS(1766), 1, + anon_sym_default, + ACTIONS(1794), 1, anon_sym_RBRACE, + ACTIONS(1796), 1, anon_sym_case, - anon_sym_default, - [57599] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + STATE(850), 3, + sym_default_case, + sym_communication_case, + aux_sym_select_statement_repeat1, + [50679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1778), 1, + ACTIONS(1766), 1, anon_sym_default, - ACTIONS(1818), 1, + ACTIONS(1798), 1, anon_sym_RBRACE, - STATE(855), 1, - sym_comment, - STATE(861), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(1098), 2, + STATE(864), 3, sym_expression_case, sym_default_case, - [57628] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + aux_sym_expression_switch_statement_repeat1, + [50697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1778), 1, + ACTIONS(1766), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1800), 1, anon_sym_RBRACE, - STATE(846), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(856), 1, - sym_comment, - STATE(1098), 2, + STATE(845), 3, sym_expression_case, sym_default_case, - [57657] = 9, + aux_sym_expression_switch_statement_repeat1, + [50715] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1778), 1, - anon_sym_default, - ACTIONS(1822), 1, - anon_sym_RBRACE, - ACTIONS(1824), 1, - anon_sym_case, - STATE(857), 1, sym_comment, - STATE(870), 1, - aux_sym_select_statement_repeat1, - STATE(1091), 2, - sym_default_case, - sym_communication_case, - [57686] = 8, + ACTIONS(1353), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_block, + ACTIONS(742), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [50731] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1826), 1, - anon_sym_RBRACE, - ACTIONS(1828), 1, - anon_sym_case, - ACTIONS(1831), 1, - anon_sym_default, - STATE(858), 2, sym_comment, - aux_sym_expression_switch_statement_repeat1, - STATE(1098), 2, - sym_expression_case, - sym_default_case, - [57713] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + ACTIONS(1096), 1, + anon_sym_COLON, + ACTIONS(1802), 1, + anon_sym_COMMA, + STATE(855), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1094), 3, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COLON_EQ, + [50749] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1778), 1, + ACTIONS(1766), 1, anon_sym_default, - ACTIONS(1834), 1, + ACTIONS(1805), 1, anon_sym_RBRACE, - STATE(859), 1, - sym_comment, - STATE(878), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(1098), 2, + STATE(847), 3, sym_expression_case, sym_default_case, - [57742] = 9, + aux_sym_expression_switch_statement_repeat1, + [50767] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1778), 1, + sym_comment, + ACTIONS(1766), 1, anon_sym_default, - ACTIONS(1836), 1, - anon_sym_RBRACE, - ACTIONS(1838), 1, + ACTIONS(1796), 1, anon_sym_case, - STATE(860), 1, - sym_comment, - STATE(875), 1, - aux_sym_type_switch_statement_repeat1, - STATE(1026), 2, + ACTIONS(1807), 1, + anon_sym_RBRACE, + STATE(851), 3, sym_default_case, - sym_type_case, - [57771] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + sym_communication_case, + aux_sym_select_statement_repeat1, + [50785] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(618), 1, + anon_sym_LBRACE, + ACTIONS(1342), 1, + anon_sym_DOT, + ACTIONS(1712), 1, + anon_sym_LBRACK, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_parameter_list, + STATE(817), 1, + sym_type_arguments, + [50807] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_LF, + ACTIONS(1813), 1, + anon_sym_SEMI, + STATE(866), 1, + aux_sym__statement_list_repeat1, + ACTIONS(206), 3, + anon_sym_RBRACE, anon_sym_case, - ACTIONS(1778), 1, anon_sym_default, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(858), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(861), 1, + [50825] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1098), 2, - sym_expression_case, + ACTIONS(1766), 1, + anon_sym_default, + ACTIONS(1770), 1, + anon_sym_case, + ACTIONS(1815), 1, + anon_sym_RBRACE, + STATE(871), 3, sym_default_case, - [57800] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1146), 1, + sym_type_case, + aux_sym_type_switch_statement_repeat1, + [50843] = 6, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1176), 1, anon_sym_DQUOTE, - ACTIONS(1842), 1, + ACTIONS(1817), 1, anon_sym_LF, - ACTIONS(1846), 1, + ACTIONS(1821), 1, sym_raw_string_literal, - STATE(862), 1, - sym_comment, - STATE(1048), 1, + STATE(1034), 1, sym_interpreted_string_literal, - ACTIONS(1844), 2, + ACTIONS(1819), 2, anon_sym_SEMI, anon_sym_RBRACE, - [57829] = 8, + [50863] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1848), 1, - anon_sym_RBRACE, - ACTIONS(1850), 1, - anon_sym_case, - ACTIONS(1853), 1, - anon_sym_default, - STATE(863), 2, sym_comment, - aux_sym_select_statement_repeat1, - STATE(1091), 2, - sym_default_case, - sym_communication_case, - [57856] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1778), 1, - anon_sym_default, - ACTIONS(1838), 1, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1856), 1, + ACTIONS(1766), 1, + anon_sym_default, + ACTIONS(1823), 1, anon_sym_RBRACE, - STATE(860), 1, - aux_sym_type_switch_statement_repeat1, - STATE(864), 1, - sym_comment, - STATE(1026), 2, + STATE(876), 3, + sym_expression_case, sym_default_case, - sym_type_case, - [57885] = 7, + aux_sym_expression_switch_statement_repeat1, + [50881] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - anon_sym_COLON, - ACTIONS(1858), 1, - anon_sym_COMMA, - STATE(865), 2, sym_comment, + ACTIONS(1184), 1, + anon_sym_COMMA, + ACTIONS(1748), 1, + anon_sym_COLON, + STATE(855), 1, aux_sym_expression_list_repeat1, - ACTIONS(1100), 3, + ACTIONS(1621), 3, anon_sym_SEMI, anon_sym_EQ, anon_sym_COLON_EQ, - [57910] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + [50899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_RBRACE, + ACTIONS(1827), 1, anon_sym_case, - ACTIONS(1778), 1, + ACTIONS(1830), 1, anon_sym_default, - ACTIONS(1861), 1, - anon_sym_RBRACE, - STATE(858), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(866), 1, - sym_comment, - STATE(1098), 2, + STATE(864), 3, sym_expression_case, sym_default_case, - [57939] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1146), 1, - anon_sym_DQUOTE, - ACTIONS(1863), 1, + aux_sym_expression_switch_statement_repeat1, + [50917] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1833), 1, anon_sym_LF, - ACTIONS(1867), 1, - sym_raw_string_literal, - STATE(867), 1, + ACTIONS(1837), 1, + anon_sym_EQ, + ACTIONS(1835), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [50933] = 5, + ACTIONS(286), 1, sym_comment, - STATE(1035), 1, - sym_interpreted_string_literal, - ACTIONS(1865), 2, + ACTIONS(1839), 1, + anon_sym_LF, + ACTIONS(1842), 1, anon_sym_SEMI, + STATE(866), 1, + aux_sym__statement_list_repeat1, + ACTIONS(1845), 3, anon_sym_RBRACE, - [57968] = 10, + anon_sym_case, + anon_sym_default, + [50951] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(624), 1, + sym_comment, + ACTIONS(306), 1, anon_sym_LBRACE, - ACTIONS(1367), 1, - anon_sym_DOT, - ACTIONS(1739), 1, - anon_sym_LBRACK, - ACTIONS(1869), 1, + STATE(438), 1, + sym_literal_value, + ACTIONS(654), 4, anon_sym_LPAREN, - STATE(27), 1, - sym_parameter_list, - STATE(828), 1, - sym_type_arguments, - STATE(868), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [50967] = 6, + ACTIONS(286), 1, sym_comment, - [57999] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1146), 1, + ACTIONS(1176), 1, anon_sym_DQUOTE, - ACTIONS(1863), 1, + ACTIONS(1847), 1, anon_sym_LF, - ACTIONS(1871), 1, + ACTIONS(1851), 1, sym_raw_string_literal, - STATE(869), 1, - sym_comment, - STATE(1057), 1, + STATE(1097), 1, sym_interpreted_string_literal, - ACTIONS(1865), 2, + ACTIONS(1849), 2, anon_sym_SEMI, anon_sym_RBRACE, - [58028] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1778), 1, - anon_sym_default, - ACTIONS(1824), 1, - anon_sym_case, - ACTIONS(1873), 1, - anon_sym_RBRACE, - STATE(863), 1, - aux_sym_select_statement_repeat1, - STATE(870), 1, + [50987] = 6, + ACTIONS(286), 1, sym_comment, - STATE(1091), 2, - sym_default_case, - sym_communication_case, - [58057] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1875), 1, + ACTIONS(1176), 1, + anon_sym_DQUOTE, + ACTIONS(1853), 1, anon_sym_LF, - ACTIONS(1879), 1, - anon_sym_else, - STATE(871), 1, + ACTIONS(1857), 1, + sym_raw_string_literal, + STATE(1037), 1, + sym_interpreted_string_literal, + ACTIONS(1855), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51007] = 6, + ACTIONS(286), 1, sym_comment, - ACTIONS(1877), 4, + ACTIONS(1176), 1, + anon_sym_DQUOTE, + ACTIONS(1853), 1, + anon_sym_LF, + ACTIONS(1859), 1, + sym_raw_string_literal, + STATE(1033), 1, + sym_interpreted_string_literal, + ACTIONS(1855), 2, anon_sym_SEMI, anon_sym_RBRACE, + [51027] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, + anon_sym_RBRACE, + ACTIONS(1863), 1, anon_sym_case, + ACTIONS(1866), 1, anon_sym_default, - [58082] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1188), 1, - anon_sym_COMMA, - ACTIONS(1766), 1, - anon_sym_COLON, - STATE(865), 1, - aux_sym_expression_list_repeat1, - STATE(872), 1, + STATE(871), 3, + sym_default_case, + sym_type_case, + aux_sym_type_switch_statement_repeat1, + [51045] = 4, + ACTIONS(286), 1, sym_comment, - ACTIONS(1627), 3, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - [58109] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1881), 1, + ACTIONS(1869), 1, sym_identifier, - ACTIONS(1883), 1, + ACTIONS(1871), 1, anon_sym_LF, - STATE(873), 1, - sym_comment, - ACTIONS(1885), 4, + ACTIONS(1873), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58134] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + [51061] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1875), 1, sym_identifier, - ACTIONS(1889), 1, + ACTIONS(1877), 1, anon_sym_LF, - STATE(874), 1, - sym_comment, - ACTIONS(1891), 4, + ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58159] = 8, + [51077] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1893), 1, - anon_sym_RBRACE, - ACTIONS(1895), 1, + sym_comment, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1898), 1, + ACTIONS(1766), 1, anon_sym_default, - STATE(875), 2, - sym_comment, - aux_sym_type_switch_statement_repeat1, - STATE(1026), 2, + ACTIONS(1881), 1, + anon_sym_RBRACE, + STATE(852), 3, + sym_expression_case, sym_default_case, - sym_type_case, - [58186] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1901), 1, - anon_sym_LF, - ACTIONS(1905), 1, - anon_sym_else, - STATE(876), 1, + aux_sym_expression_switch_statement_repeat1, + [51095] = 4, + ACTIONS(286), 1, sym_comment, - ACTIONS(1903), 4, + ACTIONS(1883), 1, + anon_sym_LF, + ACTIONS(1887), 1, + anon_sym_EQ, + ACTIONS(1885), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58211] = 7, + [51111] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1361), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_block, - STATE(877), 1, sym_comment, - ACTIONS(834), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [58236] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1778), 1, + ACTIONS(1766), 1, anon_sym_default, - ACTIONS(1907), 1, + ACTIONS(1889), 1, anon_sym_RBRACE, - STATE(858), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(878), 1, - sym_comment, - STATE(1098), 2, + STATE(864), 3, sym_expression_case, sym_default_case, - [58265] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1776), 1, + aux_sym_expression_switch_statement_repeat1, + [51129] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1891), 1, + anon_sym_LF, + ACTIONS(1895), 1, + anon_sym_else, + ACTIONS(1893), 4, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_case, - ACTIONS(1778), 1, anon_sym_default, - ACTIONS(1909), 1, - anon_sym_RBRACE, - STATE(866), 1, - aux_sym_expression_switch_statement_repeat1, - STATE(879), 1, + [51145] = 6, + ACTIONS(286), 1, sym_comment, - STATE(1098), 2, - sym_expression_case, - sym_default_case, - [58294] = 7, + ACTIONS(1176), 1, + anon_sym_DQUOTE, + ACTIONS(1897), 1, + anon_sym_LF, + ACTIONS(1901), 1, + sym_raw_string_literal, + STATE(1098), 1, + sym_interpreted_string_literal, + ACTIONS(1899), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51165] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1911), 1, + sym_comment, + ACTIONS(1903), 2, + sym_blank_identifier, sym_identifier, - ACTIONS(1914), 1, + ACTIONS(1723), 4, + anon_sym_DOT, anon_sym_RPAREN, - STATE(880), 2, + sym_raw_string_literal, + anon_sym_DQUOTE, + [51179] = 3, + ACTIONS(286), 1, sym_comment, - aux_sym_type_declaration_repeat1, - STATE(1163), 2, - sym_type_alias, - sym_type_spec, - [58318] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1916), 1, + ACTIONS(1905), 1, anon_sym_LF, - STATE(881), 1, + ACTIONS(1907), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [51192] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1918), 4, + ACTIONS(1909), 1, + anon_sym_LF, + ACTIONS(1911), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58340] = 6, + [51205] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1920), 1, - anon_sym_LF, + sym_comment, + ACTIONS(1913), 1, + sym_identifier, + ACTIONS(1916), 1, + anon_sym_RPAREN, STATE(882), 1, + aux_sym_type_declaration_repeat1, + STATE(1139), 2, + sym_type_alias, + sym_type_spec, + [51222] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1922), 4, + ACTIONS(1918), 1, + anon_sym_LF, + ACTIONS(1920), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58362] = 9, + [51235] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, + sym_comment, + ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1178), 1, anon_sym_LBRACE, - ACTIONS(1739), 1, + ACTIONS(1712), 1, anon_sym_LBRACK, - STATE(399), 1, + STATE(577), 1, sym_literal_value, - STATE(825), 1, + STATE(828), 1, sym_type_arguments, - STATE(883), 1, + [51254] = 3, + ACTIONS(286), 1, sym_comment, - [58390] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1924), 1, + ACTIONS(1922), 1, anon_sym_LF, - STATE(884), 1, - sym_comment, - ACTIONS(1926), 4, + ACTIONS(1924), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58412] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1928), 1, - anon_sym_LF, - STATE(885), 1, + [51267] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1930), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [58434] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1932), 1, + ACTIONS(1926), 1, anon_sym_LF, - STATE(886), 1, - sym_comment, - ACTIONS(1934), 4, + ACTIONS(1928), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58456] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1936), 1, - anon_sym_LF, - STATE(887), 1, + [51280] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1938), 4, + ACTIONS(1930), 1, + anon_sym_LF, + ACTIONS(1932), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58478] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1940), 1, - anon_sym_LF, - STATE(888), 1, + [51293] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1942), 4, + ACTIONS(1934), 1, + anon_sym_LF, + ACTIONS(1936), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58500] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1944), 1, + [51306] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1938), 1, anon_sym_LF, + ACTIONS(1942), 1, + anon_sym_PIPE, STATE(889), 1, - sym_comment, - ACTIONS(1946), 4, + aux_sym_struct_elem_repeat1, + ACTIONS(1940), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [58522] = 6, + [51323] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1948), 1, - anon_sym_LF, - STATE(890), 1, sym_comment, - ACTIONS(1950), 4, - anon_sym_SEMI, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_STAR, + ACTIONS(1949), 1, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [58544] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1952), 1, + STATE(861), 1, + sym_qualified_type, + STATE(996), 1, + sym_field_declaration, + [51342] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1951), 1, anon_sym_LF, + ACTIONS(1955), 1, + anon_sym_PIPE, STATE(891), 1, - sym_comment, - ACTIONS(1954), 4, + aux_sym_constraint_elem_repeat1, + ACTIONS(1953), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [58566] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(712), 1, - anon_sym_LF, - STATE(892), 1, + [51359] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(714), 4, + ACTIONS(1958), 1, + anon_sym_LF, + ACTIONS(1960), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58588] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1956), 1, - anon_sym_LF, - STATE(893), 1, + [51372] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1958), 4, + ACTIONS(1962), 1, + anon_sym_LF, + ACTIONS(1964), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58610] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1960), 1, - anon_sym_LF, - STATE(894), 1, + [51385] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1962), 4, + ACTIONS(1966), 1, + anon_sym_LF, + ACTIONS(1968), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58632] = 9, + [51398] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, + sym_comment, + ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(1739), 1, + ACTIONS(1712), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - STATE(336), 1, + STATE(516), 1, sym_literal_value, - STATE(825), 1, + STATE(828), 1, sym_type_arguments, - STATE(895), 1, + [51417] = 3, + ACTIONS(286), 1, sym_comment, - [58660] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1966), 1, + ACTIONS(1972), 1, anon_sym_LF, - STATE(896), 1, - sym_comment, - ACTIONS(1968), 4, + ACTIONS(1974), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58682] = 6, + [51430] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1970), 1, - anon_sym_LF, - STATE(897), 1, sym_comment, - ACTIONS(1972), 4, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_STAR, + ACTIONS(1976), 1, + anon_sym_RBRACE, + STATE(861), 1, + sym_qualified_type, + STATE(1090), 1, + sym_field_declaration, + [51449] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_LF, + ACTIONS(1980), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58704] = 6, + [51462] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1974), 1, - anon_sym_LF, - STATE(898), 1, sym_comment, - ACTIONS(1976), 4, + ACTIONS(1982), 1, + sym_identifier, + ACTIONS(1984), 1, + anon_sym_RPAREN, + STATE(882), 1, + aux_sym_type_declaration_repeat1, + STATE(1139), 2, + sym_type_alias, + sym_type_spec, + [51479] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_LF, + ACTIONS(820), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58726] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, - anon_sym_LBRACK, - ACTIONS(1978), 1, - anon_sym_LBRACE, - STATE(373), 1, - sym_literal_value, - STATE(825), 1, - sym_type_arguments, - STATE(899), 1, + [51492] = 3, + ACTIONS(286), 1, sym_comment, - [58754] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(1986), 1, anon_sym_LF, - ACTIONS(1984), 1, - anon_sym_PIPE, - STATE(900), 1, - sym_comment, - STATE(918), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(1982), 2, + ACTIONS(1988), 4, anon_sym_SEMI, anon_sym_RBRACE, - [58780] = 8, + anon_sym_case, + anon_sym_default, + [51505] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1986), 1, - anon_sym_LF, - ACTIONS(1990), 1, - anon_sym_PIPE, - STATE(901), 1, sym_comment, - STATE(915), 1, - aux_sym_constraint_elem_repeat1, - ACTIONS(1988), 2, - anon_sym_SEMI, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_STAR, + ACTIONS(1990), 1, anon_sym_RBRACE, - [58806] = 6, + STATE(861), 1, + sym_qualified_type, + STATE(1090), 1, + sym_field_declaration, + [51524] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + sym_comment, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1712), 1, + anon_sym_LBRACK, ACTIONS(1992), 1, - anon_sym_LF, - STATE(902), 1, + anon_sym_LBRACE, + STATE(338), 1, + sym_literal_value, + STATE(828), 1, + sym_type_arguments, + [51543] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1994), 4, + ACTIONS(1994), 1, + anon_sym_LF, + ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58828] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1996), 1, - anon_sym_LF, - STATE(903), 1, + [51556] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1998), 4, + ACTIONS(1998), 1, + anon_sym_LF, + ACTIONS(2000), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58850] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2000), 1, - anon_sym_LF, - STATE(904), 1, + [51569] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2002), 4, + ACTIONS(2002), 1, + anon_sym_LF, + ACTIONS(2004), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58872] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2004), 1, - anon_sym_LF, - STATE(905), 1, + [51582] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2006), 4, + ACTIONS(2006), 1, + anon_sym_LF, + ACTIONS(2008), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58894] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2010), 1, - anon_sym_STAR, - ACTIONS(2012), 1, - anon_sym_RBRACE, - STATE(848), 1, - sym_qualified_type, - STATE(906), 1, + [51595] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1051), 1, - sym_field_declaration, - [58922] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2014), 1, + ACTIONS(2010), 1, anon_sym_LF, - STATE(907), 1, - sym_comment, - ACTIONS(2016), 4, + ACTIONS(1845), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58944] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2018), 1, - anon_sym_LF, - STATE(908), 1, + [51608] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2020), 4, + ACTIONS(2012), 1, + anon_sym_LF, + ACTIONS(2014), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58966] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2022), 1, - anon_sym_LF, - STATE(909), 1, + [51621] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2024), 4, + ACTIONS(2016), 1, + anon_sym_LF, + ACTIONS(2018), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [58988] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2026), 1, + [51634] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2020), 1, anon_sym_LF, - STATE(910), 1, + ACTIONS(2024), 1, + anon_sym_PIPE, + STATE(891), 1, + aux_sym_constraint_elem_repeat1, + ACTIONS(2022), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51651] = 3, + ACTIONS(286), 1, sym_comment, + ACTIONS(2026), 1, + anon_sym_LF, ACTIONS(2028), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59010] = 9, + [51664] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, + sym_comment, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2010), 1, + ACTIONS(1947), 1, anon_sym_STAR, ACTIONS(2030), 1, anon_sym_RBRACE, - STATE(848), 1, + STATE(861), 1, sym_qualified_type, - STATE(911), 1, - sym_comment, - STATE(1051), 1, + STATE(966), 1, sym_field_declaration, - [59038] = 6, + [51683] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2032), 1, + anon_sym_struct, + STATE(978), 1, + sym_struct_type, + STATE(982), 1, + sym_struct_term, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_TILDE, + [51700] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2034), 1, anon_sym_LF, - STATE(912), 1, + ACTIONS(2038), 1, + anon_sym_PIPE, + STATE(889), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(2036), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_LBRACE, + ACTIONS(1712), 1, + anon_sym_LBRACK, + STATE(393), 1, + sym_literal_value, + STATE(828), 1, + sym_type_arguments, + [51736] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2034), 4, + ACTIONS(2040), 1, + anon_sym_LF, + ACTIONS(2042), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59060] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2010), 1, - anon_sym_STAR, - ACTIONS(2036), 1, - anon_sym_RBRACE, - STATE(848), 1, - sym_qualified_type, - STATE(913), 1, + [51749] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1051), 1, - sym_field_declaration, - [59088] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2038), 1, + ACTIONS(2044), 1, anon_sym_LF, - STATE(914), 1, - sym_comment, - ACTIONS(1816), 4, + ACTIONS(2046), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59110] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1990), 1, - anon_sym_PIPE, - ACTIONS(2040), 1, - anon_sym_LF, - STATE(915), 1, + [51762] = 3, + ACTIONS(286), 1, sym_comment, - STATE(950), 1, - aux_sym_constraint_elem_repeat1, - ACTIONS(2042), 2, + ACTIONS(2048), 1, + anon_sym_LF, + ACTIONS(2050), 4, anon_sym_SEMI, anon_sym_RBRACE, - [59136] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2044), 1, - anon_sym_struct, - STATE(916), 1, + anon_sym_case, + anon_sym_default, + [51775] = 3, + ACTIONS(286), 1, sym_comment, - STATE(966), 1, - sym_struct_term, - STATE(991), 1, - sym_struct_type, - ACTIONS(1631), 2, - anon_sym_STAR, - anon_sym_TILDE, - [59162] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2046), 1, + ACTIONS(2052), 1, anon_sym_LF, - STATE(917), 1, - sym_comment, - ACTIONS(2048), 4, + ACTIONS(2054), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59184] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(1984), 1, - anon_sym_PIPE, - ACTIONS(2050), 1, - anon_sym_LF, - STATE(918), 1, + [51788] = 3, + ACTIONS(286), 1, sym_comment, - STATE(951), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(2052), 2, + ACTIONS(2056), 1, + anon_sym_LF, + ACTIONS(2058), 4, anon_sym_SEMI, anon_sym_RBRACE, - [59210] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2056), 1, - anon_sym_RPAREN, - STATE(880), 1, - aux_sym_type_declaration_repeat1, - STATE(919), 1, - sym_comment, - STATE(1163), 2, - sym_type_alias, - sym_type_spec, - [59236] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2058), 1, - anon_sym_RPAREN, - STATE(919), 1, - aux_sym_type_declaration_repeat1, - STATE(920), 1, + anon_sym_case, + anon_sym_default, + [51801] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1163), 2, - sym_type_alias, - sym_type_spec, - [59262] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, ACTIONS(2060), 1, anon_sym_LF, - STATE(921), 1, - sym_comment, ACTIONS(2062), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59284] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + [51814] = 3, + ACTIONS(286), 1, + sym_comment, ACTIONS(2064), 1, anon_sym_LF, - STATE(922), 1, - sym_comment, ACTIONS(2066), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59306] = 6, + [51827] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + sym_comment, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_STAR, ACTIONS(2068), 1, + anon_sym_RBRACE, + STATE(861), 1, + sym_qualified_type, + STATE(1090), 1, + sym_field_declaration, + [51846] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2024), 1, + anon_sym_PIPE, + ACTIONS(2070), 1, anon_sym_LF, - STATE(923), 1, + STATE(911), 1, + aux_sym_constraint_elem_repeat1, + ACTIONS(2072), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51863] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2070), 4, + ACTIONS(2074), 1, + anon_sym_LF, + ACTIONS(2076), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59328] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2072), 1, + [51876] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2038), 1, + anon_sym_PIPE, + ACTIONS(2078), 1, anon_sym_LF, - STATE(924), 1, + STATE(915), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(2080), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51893] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2074), 4, + ACTIONS(2082), 1, + anon_sym_LF, + ACTIONS(2084), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59350] = 9, + [51906] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, + sym_comment, + ACTIONS(1982), 1, sym_identifier, - ACTIONS(2010), 1, + ACTIONS(2086), 1, + anon_sym_RPAREN, + STATE(899), 1, + aux_sym_type_declaration_repeat1, + STATE(1139), 2, + sym_type_alias, + sym_type_spec, + [51923] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(2088), 1, anon_sym_RBRACE, - STATE(848), 1, + STATE(861), 1, sym_qualified_type, - STATE(925), 1, - sym_comment, - STATE(993), 1, + STATE(1090), 1, sym_field_declaration, - [59378] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2078), 1, - anon_sym_LF, - STATE(926), 1, + [51942] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2080), 4, + ACTIONS(2090), 1, + anon_sym_LF, + ACTIONS(2092), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59400] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2010), 1, - anon_sym_STAR, - ACTIONS(2082), 1, - anon_sym_RBRACE, - STATE(848), 1, - sym_qualified_type, - STATE(927), 1, + [51955] = 3, + ACTIONS(286), 1, sym_comment, - STATE(962), 1, - sym_field_declaration, - [59428] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2084), 1, + ACTIONS(2094), 1, anon_sym_LF, - STATE(928), 1, - sym_comment, - ACTIONS(2086), 4, + ACTIONS(2096), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59450] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2088), 1, - anon_sym_LF, - STATE(929), 1, + [51968] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2090), 4, + ACTIONS(2098), 1, + anon_sym_LF, + ACTIONS(2100), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59472] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2010), 1, - anon_sym_STAR, - ACTIONS(2092), 1, - anon_sym_RBRACE, - STATE(848), 1, - sym_qualified_type, - STATE(930), 1, - sym_comment, - STATE(994), 1, - sym_field_declaration, - [59500] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, - anon_sym_LBRACK, - ACTIONS(2094), 1, - anon_sym_LBRACE, - STATE(537), 1, - sym_literal_value, - STATE(825), 1, - sym_type_arguments, - STATE(931), 1, + [51981] = 3, + ACTIONS(286), 1, sym_comment, - [59528] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2096), 1, + ACTIONS(2102), 1, anon_sym_LF, - STATE(932), 1, - sym_comment, - ACTIONS(2098), 4, + ACTIONS(2104), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59550] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2100), 1, - anon_sym_LF, - STATE(933), 1, + [51994] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2102), 4, + ACTIONS(2106), 1, + anon_sym_LF, + ACTIONS(2108), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59572] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(1226), 1, - anon_sym_LBRACE, - ACTIONS(1739), 1, - anon_sym_LBRACK, - STATE(566), 1, - sym_literal_value, - STATE(825), 1, - sym_type_arguments, - STATE(934), 1, + [52007] = 3, + ACTIONS(286), 1, sym_comment, - [59600] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2104), 1, + ACTIONS(2110), 1, anon_sym_LF, - STATE(935), 1, - sym_comment, - ACTIONS(2106), 4, + ACTIONS(2112), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59622] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2108), 1, - anon_sym_LF, - STATE(936), 1, + [52020] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2110), 4, + ACTIONS(2114), 1, + anon_sym_LF, + ACTIONS(2116), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59644] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2112), 1, - anon_sym_LF, - STATE(937), 1, + [52033] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2114), 4, + ACTIONS(2118), 1, + anon_sym_LF, + ACTIONS(2120), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59666] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2116), 1, - anon_sym_LF, - STATE(938), 1, + [52046] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2118), 4, + ACTIONS(2122), 1, + anon_sym_LF, + ACTIONS(2124), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59688] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2120), 1, - anon_sym_LF, - STATE(939), 1, + [52059] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2122), 4, + ACTIONS(2126), 1, + anon_sym_LF, + ACTIONS(2128), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59710] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2124), 1, - anon_sym_LF, - STATE(940), 1, + [52072] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2126), 4, + ACTIONS(2130), 1, + anon_sym_LF, + ACTIONS(2132), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59732] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2128), 1, - anon_sym_LF, - STATE(941), 1, + [52085] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2130), 4, + ACTIONS(2134), 1, + anon_sym_LF, + ACTIONS(2136), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59754] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2132), 1, - anon_sym_LF, - STATE(942), 1, + [52098] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2134), 4, + ACTIONS(2138), 1, + anon_sym_LF, + ACTIONS(2140), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59776] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2136), 1, - anon_sym_LF, - STATE(943), 1, + [52111] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2138), 4, + ACTIONS(2142), 1, + anon_sym_LF, + ACTIONS(2144), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59798] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2140), 1, - anon_sym_LF, - STATE(944), 1, + [52124] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2142), 4, + ACTIONS(2146), 1, + anon_sym_LF, + ACTIONS(2148), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59820] = 9, + [52137] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, + sym_comment, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2010), 1, + ACTIONS(1947), 1, anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(2150), 1, anon_sym_RBRACE, - STATE(848), 1, + STATE(861), 1, sym_qualified_type, - STATE(945), 1, - sym_comment, - STATE(1051), 1, + STATE(1090), 1, sym_field_declaration, - [59848] = 9, + [52156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1712), 1, + anon_sym_LBRACK, + ACTIONS(2152), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_literal_value, + STATE(828), 1, + sym_type_arguments, + [52175] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, + sym_comment, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2010), 1, + ACTIONS(1947), 1, anon_sym_STAR, - ACTIONS(2146), 1, + ACTIONS(2154), 1, anon_sym_RBRACE, - STATE(848), 1, + STATE(861), 1, sym_qualified_type, - STATE(946), 1, - sym_comment, - STATE(1051), 1, + STATE(1090), 1, sym_field_declaration, - [59876] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2148), 1, - anon_sym_LF, - STATE(947), 1, + [52194] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2150), 4, + ACTIONS(2156), 1, + anon_sym_LF, + ACTIONS(2158), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59898] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2010), 1, - anon_sym_STAR, - ACTIONS(2152), 1, - anon_sym_RBRACE, - STATE(848), 1, - sym_qualified_type, - STATE(948), 1, + [52207] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1051), 1, - sym_field_declaration, - [59926] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2154), 1, + ACTIONS(2160), 1, anon_sym_LF, - STATE(949), 1, - sym_comment, - ACTIONS(2156), 4, + ACTIONS(2162), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [59948] = 7, + [52220] = 6, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_LF, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2160), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - STATE(950), 2, sym_comment, - aux_sym_constraint_elem_repeat1, - [59972] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2165), 1, - anon_sym_LF, - ACTIONS(2169), 1, - anon_sym_PIPE, - ACTIONS(2167), 2, - anon_sym_SEMI, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_STAR, + ACTIONS(2164), 1, anon_sym_RBRACE, - STATE(951), 2, + STATE(861), 1, + sym_qualified_type, + STATE(983), 1, + sym_field_declaration, + [52239] = 3, + ACTIONS(286), 1, sym_comment, - aux_sym_struct_elem_repeat1, - [59996] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2172), 1, + ACTIONS(2166), 1, anon_sym_LF, - STATE(952), 1, - sym_comment, - ACTIONS(2174), 4, + ACTIONS(2168), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [60018] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2176), 1, - anon_sym_LF, - STATE(953), 1, + [52252] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2178), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [60040] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2170), 1, anon_sym_LF, - STATE(954), 1, - sym_comment, - ACTIONS(2182), 4, + ACTIONS(2172), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [60062] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(955), 1, + [52265] = 4, + ACTIONS(286), 1, sym_comment, - ACTIONS(798), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [60081] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2174), 1, anon_sym_DQUOTE, - STATE(956), 1, - sym_comment, - STATE(968), 1, + STATE(980), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, + ACTIONS(2176), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [60104] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2188), 1, - anon_sym_COMMA, - ACTIONS(2190), 1, - anon_sym_RBRACE, - ACTIONS(2192), 1, - anon_sym_COLON, - STATE(957), 1, + [52279] = 5, + ACTIONS(286), 1, sym_comment, - STATE(1074), 1, - aux_sym_literal_value_repeat1, - [60129] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2194), 1, + ACTIONS(2178), 1, anon_sym_LF, - ACTIONS(2196), 1, + ACTIONS(2181), 1, anon_sym_SEMI, - ACTIONS(2198), 1, + ACTIONS(2184), 1, anon_sym_RBRACE, - STATE(958), 1, - sym_comment, - STATE(1008), 1, - aux_sym_interface_type_repeat1, - [60154] = 7, + STATE(955), 1, + aux_sym_field_declaration_list_repeat1, + [52295] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2200), 1, - anon_sym_LPAREN, - STATE(959), 1, sym_comment, - STATE(926), 2, - sym_type_alias, - sym_type_spec, - [60177] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2192), 1, - anon_sym_COLON, - ACTIONS(2202), 1, + ACTIONS(2186), 1, anon_sym_COMMA, - ACTIONS(2204), 1, + ACTIONS(2188), 1, anon_sym_RBRACE, - STATE(960), 1, - sym_comment, - STATE(1069), 1, + ACTIONS(2190), 1, + anon_sym_COLON, + STATE(1075), 1, aux_sym_literal_value_repeat1, - [60202] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2206), 1, - anon_sym_DQUOTE, - STATE(961), 1, + [52311] = 4, + ACTIONS(286), 1, sym_comment, - STATE(971), 1, + ACTIONS(2192), 1, + anon_sym_DQUOTE, + STATE(963), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, + ACTIONS(2194), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [60225] = 8, + [52325] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2196), 1, + anon_sym_LF, + ACTIONS(2198), 1, + anon_sym_SEMI, + ACTIONS(2200), 1, + anon_sym_RBRACE, + STATE(955), 1, + aux_sym_field_declaration_list_repeat1, + [52341] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + sym_comment, + ACTIONS(2202), 1, + anon_sym_LPAREN, + ACTIONS(2204), 1, + anon_sym_COMMA, + ACTIONS(2206), 1, + anon_sym_RBRACK, + STATE(1072), 1, + aux_sym_type_arguments_repeat1, + [52357] = 5, + ACTIONS(286), 1, + sym_comment, ACTIONS(2208), 1, anon_sym_LF, ACTIONS(2210), 1, anon_sym_SEMI, ACTIONS(2212), 1, anon_sym_RBRACE, - STATE(962), 1, - sym_comment, - STATE(972), 1, - aux_sym_field_declaration_list_repeat1, - [60250] = 8, + STATE(1001), 1, + aux_sym_interface_type_repeat1, + [52373] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2192), 1, + sym_comment, + ACTIONS(2190), 1, anon_sym_COLON, ACTIONS(2214), 1, anon_sym_COMMA, ACTIONS(2216), 1, anon_sym_RBRACE, - STATE(963), 1, - sym_comment, - STATE(1115), 1, + STATE(1055), 1, aux_sym_literal_value_repeat1, - [60275] = 8, + [52389] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2218), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2220), 1, - anon_sym_COMMA, - ACTIONS(2222), 1, - anon_sym_RBRACK, - STATE(964), 1, - sym_comment, - STATE(1018), 1, - aux_sym_type_arguments_repeat1, - [60300] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2224), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, STATE(965), 1, + aux_sym_const_declaration_repeat1, + STATE(1169), 1, + sym_const_spec, + [52405] = 4, + ACTIONS(286), 1, sym_comment, - STATE(997), 1, + ACTIONS(2222), 1, + anon_sym_DQUOTE, + STATE(981), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, + ACTIONS(2224), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [60323] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2165), 1, - anon_sym_LF, - STATE(966), 1, + [52419] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(2167), 3, + ACTIONS(2226), 1, + anon_sym_LF, + ACTIONS(2228), 1, anon_sym_SEMI, + ACTIONS(2230), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [60344] = 7, + STATE(960), 1, + aux_sym_interface_type_repeat1, + [52435] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2226), 1, + sym_comment, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_RPAREN, - STATE(1184), 1, - sym_const_spec, - STATE(967), 2, - sym_comment, + STATE(965), 1, aux_sym_const_declaration_repeat1, - [60367] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2231), 1, - anon_sym_DQUOTE, - STATE(968), 1, + STATE(1169), 1, + sym_const_spec, + [52451] = 5, + ACTIONS(286), 1, sym_comment, - STATE(997), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [60390] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2158), 1, + ACTIONS(2237), 1, anon_sym_LF, - STATE(969), 1, - sym_comment, - ACTIONS(2160), 3, + ACTIONS(2239), 1, anon_sym_SEMI, + ACTIONS(2241), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [60411] = 7, + STATE(958), 1, + aux_sym_field_declaration_list_repeat1, + [52467] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2233), 1, - anon_sym_DQUOTE, - STATE(965), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(970), 1, sym_comment, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [60434] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2235), 1, - anon_sym_DQUOTE, - STATE(971), 1, + ACTIONS(2190), 1, + anon_sym_COLON, + ACTIONS(2243), 1, + anon_sym_COMMA, + ACTIONS(2245), 1, + anon_sym_RBRACE, + STATE(1101), 1, + aux_sym_literal_value_repeat1, + [52483] = 5, + ACTIONS(286), 1, sym_comment, - STATE(997), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [60457] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2237), 1, + ACTIONS(2247), 1, anon_sym_LF, - ACTIONS(2239), 1, + ACTIONS(2249), 1, anon_sym_SEMI, - ACTIONS(2241), 1, + ACTIONS(2251), 1, anon_sym_RBRACE, - STATE(972), 1, - sym_comment, - STATE(986), 1, - aux_sym_field_declaration_list_repeat1, - [60482] = 6, + STATE(1001), 1, + aux_sym_interface_type_repeat1, + [52499] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2243), 1, - anon_sym_LF, - STATE(973), 1, sym_comment, - ACTIONS(1764), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [60503] = 8, + ACTIONS(31), 1, + anon_sym_LBRACE, + ACTIONS(2253), 1, + anon_sym_if, + STATE(892), 2, + sym_block, + sym_if_statement, + [52513] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2245), 1, + sym_comment, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_STAR, + STATE(861), 1, + sym_qualified_type, + STATE(1090), 1, + sym_field_declaration, + [52529] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2255), 1, anon_sym_LF, - ACTIONS(2247), 1, + ACTIONS(2257), 1, anon_sym_SEMI, - ACTIONS(2249), 1, + ACTIONS(2259), 1, anon_sym_RBRACE, - STATE(974), 1, + STATE(955), 1, + aux_sym_field_declaration_list_repeat1, + [52545] = 4, + ACTIONS(286), 1, sym_comment, - STATE(976), 1, - aux_sym_interface_type_repeat1, - [60528] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_RPAREN, - STATE(975), 1, + ACTIONS(2261), 1, + anon_sym_DQUOTE, + STATE(981), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2224), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52559] = 4, + ACTIONS(286), 1, sym_comment, - STATE(982), 1, - aux_sym_const_declaration_repeat1, - STATE(1184), 1, - sym_const_spec, - [60553] = 7, + ACTIONS(2263), 1, + anon_sym_DQUOTE, + STATE(972), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2265), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52573] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2255), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2267), 1, + anon_sym_LBRACK, + STATE(30), 1, + sym_parameter_list, + STATE(1149), 1, + sym_type_parameter_list, + [52589] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_DQUOTE, + STATE(981), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2224), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52603] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2271), 1, anon_sym_LF, - ACTIONS(2258), 1, + ACTIONS(2273), 1, anon_sym_SEMI, - ACTIONS(2261), 1, + ACTIONS(2275), 1, anon_sym_RBRACE, - STATE(976), 2, - sym_comment, + STATE(985), 1, aux_sym_interface_type_repeat1, - [60576] = 7, + [52619] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2263), 1, + sym_comment, + ACTIONS(2277), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2280), 1, anon_sym_RPAREN, - STATE(1171), 1, + STATE(977), 1, + aux_sym_var_declaration_repeat1, + STATE(1155), 1, sym_var_spec, - STATE(977), 2, + [52635] = 3, + ACTIONS(286), 1, sym_comment, - aux_sym_var_declaration_repeat1, - [60599] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2192), 1, - anon_sym_COLON, - ACTIONS(2268), 1, - anon_sym_COMMA, - ACTIONS(2270), 1, + ACTIONS(2282), 1, + anon_sym_LF, + ACTIONS(2284), 3, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(978), 1, - sym_comment, - STATE(1037), 1, - aux_sym_literal_value_repeat1, - [60624] = 8, + anon_sym_PIPE, + [52647] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_RPAREN, - STATE(979), 1, sym_comment, - STATE(1000), 1, - aux_sym_var_declaration_repeat1, - STATE(1171), 1, - sym_var_spec, - [60649] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LBRACE, - ACTIONS(2276), 1, + ACTIONS(2253), 1, anon_sym_if, - STATE(980), 1, - sym_comment, - STATE(902), 2, + STATE(888), 2, sym_block, sym_if_statement, - [60672] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2008), 1, - sym_identifier, - ACTIONS(2010), 1, - anon_sym_STAR, - STATE(848), 1, - sym_qualified_type, + [52661] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_DQUOTE, STATE(981), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2224), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52675] = 4, + ACTIONS(286), 1, sym_comment, - STATE(1051), 1, - sym_field_declaration, - [60697] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - sym_identifier, - ACTIONS(2278), 1, - anon_sym_RPAREN, - STATE(967), 1, - aux_sym_const_declaration_repeat1, - STATE(982), 1, + ACTIONS(2288), 1, + anon_sym_DQUOTE, + STATE(981), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2290), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52689] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1184), 1, - sym_const_spec, - [60722] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2280), 1, + ACTIONS(1938), 1, anon_sym_LF, - ACTIONS(2282), 1, + ACTIONS(1940), 3, anon_sym_SEMI, - ACTIONS(2284), 1, anon_sym_RBRACE, - STATE(976), 1, - aux_sym_interface_type_repeat1, - STATE(983), 1, + anon_sym_PIPE, + [52701] = 5, + ACTIONS(286), 1, sym_comment, - [60747] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2286), 1, + ACTIONS(2293), 1, anon_sym_LF, - ACTIONS(2288), 1, + ACTIONS(2295), 1, anon_sym_SEMI, - ACTIONS(2290), 1, + ACTIONS(2297), 1, anon_sym_RBRACE, - STATE(984), 1, - sym_comment, - STATE(986), 1, + STATE(993), 1, aux_sym_field_declaration_list_repeat1, - [60772] = 8, + [52717] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2292), 1, + sym_comment, + ACTIONS(2299), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_RPAREN, + STATE(1003), 1, + aux_sym_var_declaration_repeat1, + STATE(1155), 1, + sym_var_spec, + [52733] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_LF, - ACTIONS(2294), 1, + ACTIONS(2305), 1, anon_sym_SEMI, - ACTIONS(2296), 1, + ACTIONS(2307), 1, anon_sym_RBRACE, - STATE(985), 1, - sym_comment, - STATE(986), 1, - aux_sym_field_declaration_list_repeat1, - [60797] = 7, + STATE(1001), 1, + aux_sym_interface_type_repeat1, + [52749] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2298), 1, - anon_sym_LF, - ACTIONS(2301), 1, - anon_sym_SEMI, - ACTIONS(2304), 1, + sym_comment, + ACTIONS(2190), 1, + anon_sym_COLON, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(2311), 1, anon_sym_RBRACE, - STATE(986), 2, + STATE(1087), 1, + aux_sym_literal_value_repeat1, + [52765] = 3, + ACTIONS(286), 1, sym_comment, - aux_sym_field_declaration_list_repeat1, - [60820] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2306), 1, + ACTIONS(2313), 1, anon_sym_LF, - STATE(987), 1, - sym_comment, - ACTIONS(2308), 3, + ACTIONS(2315), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [60841] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2310), 1, - anon_sym_LF, - STATE(988), 1, + [52777] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2312), 3, + ACTIONS(2317), 1, + anon_sym_LF, + ACTIONS(2319), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [60862] = 7, + [52789] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2314), 1, - anon_sym_DQUOTE, - STATE(989), 1, sym_comment, - STATE(999), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [60885] = 8, + ACTIONS(2218), 1, + sym_identifier, + ACTIONS(2321), 1, + anon_sym_RPAREN, + STATE(962), 1, + aux_sym_const_declaration_repeat1, + STATE(1169), 1, + sym_const_spec, + [52805] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2192), 1, + sym_comment, + ACTIONS(2190), 1, anon_sym_COLON, - ACTIONS(2316), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2318), 1, + ACTIONS(2325), 1, anon_sym_RBRACE, - STATE(990), 1, - sym_comment, - STATE(1066), 1, + STATE(1052), 1, aux_sym_literal_value_repeat1, - [60910] = 6, + [52821] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2320), 1, - anon_sym_LF, + sym_comment, + ACTIONS(2327), 1, + anon_sym_COMMA, STATE(991), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(2330), 2, + anon_sym_RBRACK, + anon_sym_COLON, + [52835] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(2322), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [60931] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2324), 1, + ACTIONS(2332), 1, anon_sym_LF, - ACTIONS(2326), 1, + ACTIONS(2334), 1, anon_sym_SEMI, - ACTIONS(2328), 1, + ACTIONS(2336), 1, anon_sym_RBRACE, - STATE(983), 1, + STATE(968), 1, aux_sym_interface_type_repeat1, - STATE(992), 1, + [52851] = 5, + ACTIONS(286), 1, sym_comment, - [60956] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2330), 1, + ACTIONS(2338), 1, anon_sym_LF, - ACTIONS(2332), 1, + ACTIONS(2340), 1, anon_sym_SEMI, - ACTIONS(2334), 1, + ACTIONS(2342), 1, anon_sym_RBRACE, - STATE(985), 1, + STATE(955), 1, aux_sym_field_declaration_list_repeat1, - STATE(993), 1, - sym_comment, - [60981] = 8, + [52867] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2336), 1, - anon_sym_LF, - ACTIONS(2338), 1, - anon_sym_SEMI, - ACTIONS(2340), 1, - anon_sym_RBRACE, - STATE(984), 1, - aux_sym_field_declaration_list_repeat1, - STATE(994), 1, sym_comment, - [61006] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2192), 1, + ACTIONS(2190), 1, anon_sym_COLON, - ACTIONS(2342), 1, - anon_sym_COMMA, ACTIONS(2344), 1, + anon_sym_COMMA, + ACTIONS(2346), 1, anon_sym_RBRACE, - STATE(995), 1, - sym_comment, - STATE(1038), 1, + STATE(1049), 1, aux_sym_literal_value_repeat1, - [61031] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2346), 1, - anon_sym_LF, + [52883] = 4, + ACTIONS(286), 1, + sym_comment, ACTIONS(2348), 1, + anon_sym_DQUOTE, + STATE(975), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2350), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52897] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LF, + ACTIONS(2354), 1, anon_sym_SEMI, - ACTIONS(2350), 1, + ACTIONS(2356), 1, anon_sym_RBRACE, - STATE(974), 1, - aux_sym_interface_type_repeat1, - STATE(996), 1, - sym_comment, - [61056] = 6, + STATE(971), 1, + aux_sym_field_declaration_list_repeat1, + [52913] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2352), 1, + sym_comment, + ACTIONS(1982), 1, + sym_identifier, + ACTIONS(2358), 1, + anon_sym_LPAREN, + STATE(940), 2, + sym_type_alias, + sym_type_spec, + [52927] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2360), 1, anon_sym_DQUOTE, - ACTIONS(2354), 2, + STATE(981), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2224), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - STATE(997), 2, + [52941] = 4, + ACTIONS(286), 1, sym_comment, + ACTIONS(2362), 1, + anon_sym_DQUOTE, + STATE(981), 1, aux_sym_interpreted_string_literal_repeat1, - [61077] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2357), 1, + ACTIONS(2224), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52955] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2364), 1, anon_sym_DQUOTE, STATE(998), 1, - sym_comment, - STATE(1005), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, + ACTIONS(2366), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [61100] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2359), 1, + [52969] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_LF, + ACTIONS(2371), 1, + anon_sym_SEMI, + ACTIONS(2374), 1, + anon_sym_RBRACE, + STATE(1001), 1, + aux_sym_interface_type_repeat1, + [52985] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2376), 1, anon_sym_DQUOTE, - STATE(997), 1, - aux_sym_interpreted_string_literal_repeat1, STATE(999), 1, - sym_comment, - ACTIONS(2186), 2, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2378), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [61123] = 8, + [52999] = 5, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2272), 1, + sym_comment, + ACTIONS(2299), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2380), 1, anon_sym_RPAREN, STATE(977), 1, aux_sym_var_declaration_repeat1, - STATE(1000), 1, - sym_comment, - STATE(1171), 1, + STATE(1155), 1, sym_var_spec, - [61148] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - STATE(1001), 1, + [53015] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1006), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [61171] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2365), 1, - anon_sym_DQUOTE, - STATE(997), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(1002), 1, + ACTIONS(2382), 1, + anon_sym_LF, + ACTIONS(1754), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [53027] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [61194] = 8, + ACTIONS(1951), 1, + anon_sym_LF, + ACTIONS(1953), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [53039] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1869), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_LBRACK, - STATE(30), 1, - sym_parameter_list, - STATE(1003), 1, sym_comment, - STATE(1166), 1, - sym_type_parameter_list, - [61219] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(2276), 1, - anon_sym_if, - STATE(1004), 1, + ACTIONS(814), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [53049] = 4, + ACTIONS(286), 1, sym_comment, - STATE(952), 2, - sym_block, - sym_if_statement, - [61242] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2369), 1, + ACTIONS(2384), 1, anon_sym_DQUOTE, - STATE(997), 1, + STATE(1008), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(1005), 1, - sym_comment, - ACTIONS(2186), 2, + ACTIONS(2386), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [61265] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2371), 1, + [53063] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2388), 1, anon_sym_DQUOTE, - STATE(997), 1, + STATE(981), 1, aux_sym_interpreted_string_literal_repeat1, - STATE(1006), 1, - sym_comment, - ACTIONS(2186), 2, + ACTIONS(2224), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [61288] = 6, + [53077] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2373), 1, - anon_sym_COMMA, - ACTIONS(2376), 2, - anon_sym_RBRACK, - anon_sym_COLON, - STATE(1007), 2, sym_comment, - aux_sym_type_arguments_repeat1, - [61309] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2378), 1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(2390), 1, + sym_raw_string_literal, + STATE(1131), 1, + sym_interpreted_string_literal, + [53090] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2392), 1, anon_sym_LF, - ACTIONS(2380), 1, + ACTIONS(2394), 2, anon_sym_SEMI, - ACTIONS(2382), 1, anon_sym_RBRACE, - STATE(976), 1, - aux_sym_interface_type_repeat1, - STATE(1008), 1, - sym_comment, - [61334] = 7, + [53101] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2384), 1, - anon_sym_DQUOTE, - STATE(1002), 1, - aux_sym_interpreted_string_literal_repeat1, - STATE(1009), 1, sym_comment, - ACTIONS(2186), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [61357] = 5, + ACTIONS(2218), 1, + sym_identifier, + ACTIONS(2396), 1, + anon_sym_LPAREN, + STATE(910), 1, + sym_const_spec, + [53114] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1010), 1, sym_comment, - ACTIONS(2386), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [61375] = 7, + ACTIONS(2299), 1, + sym_identifier, + ACTIONS(2398), 1, + anon_sym_LPAREN, + STATE(917), 1, + sym_var_spec, + [53127] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1278), 1, - anon_sym_RPAREN, - ACTIONS(1280), 1, - anon_sym_COMMA, - STATE(1011), 1, sym_comment, - STATE(1034), 1, - aux_sym_argument_list_repeat1, - [61397] = 7, + ACTIONS(1278), 1, + anon_sym_LPAREN, + ACTIONS(2400), 1, + sym_identifier, + STATE(667), 1, + sym_parameter_list, + [53140] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2388), 1, - anon_sym_RPAREN, - ACTIONS(2390), 1, - anon_sym_COMMA, - STATE(1012), 1, sym_comment, - STATE(1110), 1, - aux_sym_expression_list_repeat1, - [61419] = 7, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1992), 1, + anon_sym_LBRACE, + STATE(338), 1, + sym_literal_value, + [53153] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2392), 1, - anon_sym_COMMA, - ACTIONS(2394), 1, - anon_sym_COLON, - STATE(1013), 1, sym_comment, - STATE(1082), 1, - aux_sym_type_arguments_repeat1, - [61441] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2396), 1, + ACTIONS(2402), 3, anon_sym_RPAREN, - ACTIONS(2398), 1, anon_sym_COMMA, - STATE(1014), 1, - sym_comment, - STATE(1019), 1, - aux_sym_expression_list_repeat1, - [61463] = 7, + anon_sym_RBRACK, + [53162] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(496), 1, - anon_sym_RPAREN, - ACTIONS(2400), 1, - anon_sym_COMMA, - STATE(1015), 1, sym_comment, - STATE(1027), 1, - aux_sym_argument_list_repeat1, - [61485] = 7, + ACTIONS(1739), 1, + anon_sym_DQUOTE, + ACTIONS(2404), 1, + sym_raw_string_literal, + STATE(259), 1, + sym_interpreted_string_literal, + [53175] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(834), 1, - anon_sym_LPAREN, - ACTIONS(1561), 1, - anon_sym_LBRACE, - STATE(588), 1, - sym_block, - STATE(1016), 1, sym_comment, - [61507] = 5, + ACTIONS(1739), 1, + anon_sym_DQUOTE, + ACTIONS(2406), 1, + sym_raw_string_literal, + STATE(286), 1, + sym_interpreted_string_literal, + [53188] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1017), 1, sym_comment, - ACTIONS(2376), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - [61525] = 7, + ACTIONS(2408), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [53197] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1591), 1, - anon_sym_RBRACK, - ACTIONS(2402), 1, - anon_sym_COMMA, - STATE(1007), 1, - aux_sym_type_arguments_repeat1, - STATE(1018), 1, sym_comment, - [61547] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(548), 1, - anon_sym_RPAREN, - ACTIONS(2404), 1, + ACTIONS(1094), 1, + anon_sym_LBRACE, + ACTIONS(2410), 1, anon_sym_COMMA, STATE(1019), 1, - sym_comment, - STATE(1096), 1, aux_sym_expression_list_repeat1, - [61569] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(1226), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_literal_value, - STATE(1020), 1, - sym_comment, - [61591] = 6, + [53210] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2192), 1, - anon_sym_COLON, - STATE(1021), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(2413), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [61611] = 7, + ACTIONS(2415), 1, + anon_sym_RBRACK, + STATE(1106), 1, + aux_sym_type_parameter_list_repeat1, + [53223] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(2094), 1, - anon_sym_LBRACE, - STATE(537), 1, - sym_literal_value, - STATE(1022), 1, sym_comment, - [61633] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2408), 1, + ACTIONS(1367), 1, anon_sym_RPAREN, - ACTIONS(2410), 1, + ACTIONS(2417), 1, anon_sym_COMMA, - STATE(1023), 1, - sym_comment, - STATE(1078), 1, + STATE(1107), 1, aux_sym_parameter_list_repeat1, - [61655] = 5, + [53236] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1024), 1, sym_comment, - ACTIONS(2412), 3, + ACTIONS(2419), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [61673] = 6, + [53245] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2406), 1, - anon_sym_RBRACE, - ACTIONS(2414), 1, - anon_sym_COMMA, - STATE(1025), 2, sym_comment, - aux_sym_literal_value_repeat1, - [61693] = 5, + ACTIONS(2421), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [53254] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1026), 1, sym_comment, - ACTIONS(2417), 3, + ACTIONS(2423), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [61711] = 6, + [53263] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1365), 1, - anon_sym_RPAREN, - ACTIONS(2419), 1, - anon_sym_COMMA, - STATE(1027), 2, sym_comment, - aux_sym_argument_list_repeat1, - [61731] = 5, + ACTIONS(2425), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [53272] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1028), 1, sym_comment, - ACTIONS(2422), 3, + ACTIONS(2427), 1, anon_sym_RPAREN, + ACTIONS(2429), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [61749] = 7, + STATE(1042), 1, + aux_sym_parameter_list_repeat1, + [53285] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_DQUOTE, - ACTIONS(2424), 1, - sym_raw_string_literal, - STATE(1029), 1, sym_comment, - STATE(1130), 1, - sym_interpreted_string_literal, - [61771] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(834), 1, + ACTIONS(742), 1, anon_sym_LPAREN, - STATE(314), 1, + ACTIONS(1549), 1, + anon_sym_LBRACE, + STATE(505), 1, sym_block, - STATE(1030), 1, - sym_comment, - [61793] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(73), 1, - anon_sym_DQUOTE, - ACTIONS(2426), 1, - sym_raw_string_literal, - STATE(1031), 1, + [53298] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1133), 1, - sym_interpreted_string_literal, - [61815] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2428), 1, - anon_sym_COMMA, ACTIONS(2431), 1, - anon_sym_RBRACK, - STATE(1032), 2, - sym_comment, - aux_sym_type_parameter_list_repeat1, - [61835] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2433), 1, anon_sym_LF, - STATE(1033), 1, - sym_comment, - ACTIONS(2435), 2, + ACTIONS(2433), 2, anon_sym_SEMI, anon_sym_RBRACE, - [61855] = 7, + [53309] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(490), 1, - anon_sym_RPAREN, - ACTIONS(2437), 1, - anon_sym_COMMA, - STATE(1027), 1, - aux_sym_argument_list_repeat1, - STATE(1034), 1, - sym_comment, - [61877] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2433), 1, - anon_sym_LF, - STATE(1035), 1, sym_comment, - ACTIONS(2435), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [61897] = 7, + ACTIONS(2435), 1, + anon_sym_COMMA, + ACTIONS(2437), 1, + anon_sym_COLON, + STATE(991), 1, + aux_sym_type_arguments_repeat1, + [53322] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, - anon_sym_TILDE, - STATE(969), 1, - sym_constraint_term, - STATE(1036), 1, sym_comment, - [61919] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(414), 1, + ACTIONS(2439), 3, anon_sym_RBRACE, - ACTIONS(2443), 1, - anon_sym_COMMA, - STATE(1025), 1, - aux_sym_literal_value_repeat1, - STATE(1037), 1, - sym_comment, - [61941] = 7, + anon_sym_case, + anon_sym_default, + [53331] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(424), 1, - anon_sym_RBRACE, - ACTIONS(2445), 1, - anon_sym_COMMA, - STATE(1025), 1, - aux_sym_literal_value_repeat1, - STATE(1038), 1, sym_comment, - [61963] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(562), 1, + ACTIONS(2441), 1, anon_sym_RPAREN, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_COMMA, - STATE(1039), 1, - sym_comment, - STATE(1096), 1, + STATE(1048), 1, aux_sym_expression_list_repeat1, - [61985] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2449), 1, - anon_sym_RPAREN, - ACTIONS(2451), 1, - anon_sym_COMMA, - STATE(1040), 1, - sym_comment, - STATE(1056), 1, - aux_sym_parameter_list_repeat1, - [62007] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(834), 1, - anon_sym_LPAREN, - ACTIONS(1555), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_block, - STATE(1041), 1, - sym_comment, - [62029] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_RPAREN, - ACTIONS(2455), 1, - anon_sym_COMMA, - STATE(1042), 2, - sym_comment, - aux_sym_parameter_list_repeat1, - [62049] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1559), 1, - anon_sym_RBRACK, - ACTIONS(2458), 1, - anon_sym_COMMA, - STATE(1032), 1, - aux_sym_type_parameter_list_repeat1, - STATE(1043), 1, - sym_comment, - [62071] = 7, + [53344] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1134), 1, - anon_sym_struct, - ACTIONS(2460), 1, - sym_identifier, - STATE(987), 1, - sym_struct_type, - STATE(1044), 1, sym_comment, - [62093] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2464), 1, - anon_sym_COMMA, - STATE(1045), 1, - sym_comment, - STATE(1062), 1, - aux_sym_expression_list_repeat1, - [62115] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2466), 1, + ACTIONS(2445), 1, anon_sym_COMMA, - ACTIONS(2468), 1, + ACTIONS(2447), 1, anon_sym_RBRACK, - STATE(1046), 1, - sym_comment, - STATE(1064), 1, + STATE(1050), 1, aux_sym_type_arguments_repeat1, - [62137] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2470), 1, - anon_sym_LF, - STATE(1047), 1, + [53357] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2392), 1, + anon_sym_LF, + ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, - [62157] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2474), 1, - anon_sym_LF, - STATE(1048), 1, + [53368] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2476), 2, + ACTIONS(2449), 1, + anon_sym_LF, + ACTIONS(2451), 2, anon_sym_SEMI, anon_sym_RBRACE, - [62177] = 7, + [53379] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2316), 1, + sym_comment, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2318), 1, + ACTIONS(2325), 1, anon_sym_RBRACE, - STATE(1049), 1, - sym_comment, - STATE(1066), 1, + STATE(1052), 1, aux_sym_literal_value_repeat1, - [62199] = 6, + [53392] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2478), 1, - anon_sym_LF, - STATE(1050), 1, sym_comment, - ACTIONS(2480), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [62219] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2482), 1, - anon_sym_LF, - STATE(1051), 1, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1970), 1, + anon_sym_LBRACE, + STATE(516), 1, + sym_literal_value, + [53405] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2304), 2, + ACTIONS(2392), 1, + anon_sym_LF, + ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, - [62239] = 7, + [53416] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1252), 1, + sym_comment, + ACTIONS(1310), 1, anon_sym_RPAREN, - ACTIONS(1254), 1, + ACTIONS(1312), 1, anon_sym_COMMA, - STATE(1052), 1, - sym_comment, - STATE(1070), 1, + STATE(1056), 1, aux_sym_argument_list_repeat1, - [62261] = 5, + [53429] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1053), 1, sym_comment, - ACTIONS(204), 3, + ACTIONS(200), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [62279] = 6, + [53438] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2433), 1, - anon_sym_LF, - STATE(1054), 1, sym_comment, - ACTIONS(2435), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [62299] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2484), 1, - anon_sym_LF, - STATE(1055), 1, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_TILDE, + STATE(1005), 1, + sym_constraint_term, + [53451] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2486), 2, + ACTIONS(2392), 1, + anon_sym_LF, + ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, - [62319] = 7, + [53462] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1423), 1, + sym_comment, + ACTIONS(1383), 1, anon_sym_RPAREN, - ACTIONS(2488), 1, + ACTIONS(2457), 1, anon_sym_COMMA, - STATE(1042), 1, + STATE(1107), 1, aux_sym_parameter_list_repeat1, - STATE(1056), 1, - sym_comment, - [62341] = 6, + [53475] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2433), 1, - anon_sym_LF, - STATE(1057), 1, sym_comment, - ACTIONS(2435), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [62361] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1330), 1, + ACTIONS(2459), 1, anon_sym_COMMA, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(1058), 1, + ACTIONS(2462), 1, + anon_sym_RBRACK, + STATE(1043), 1, + aux_sym_type_parameter_list_repeat1, + [53488] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1088), 1, - aux_sym_expression_list_repeat1, - [62383] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(452), 1, + ACTIONS(1338), 1, anon_sym_RPAREN, - ACTIONS(2490), 1, + ACTIONS(2464), 1, anon_sym_COMMA, - STATE(1027), 1, + STATE(1044), 1, aux_sym_argument_list_repeat1, - STATE(1059), 1, - sym_comment, - [62405] = 5, + [53501] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1060), 1, sym_comment, - ACTIONS(2492), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [62423] = 7, + ACTIONS(486), 1, + anon_sym_RPAREN, + ACTIONS(2467), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_argument_list_repeat1, + [53514] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2342), 1, + sym_comment, + ACTIONS(2469), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(2472), 1, anon_sym_RBRACE, - STATE(1038), 1, + STATE(1046), 1, aux_sym_literal_value_repeat1, - STATE(1061), 1, - sym_comment, - [62445] = 7, + [53527] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(582), 1, + sym_comment, + ACTIONS(466), 1, anon_sym_RPAREN, - ACTIONS(2494), 1, + ACTIONS(2474), 1, anon_sym_COMMA, - STATE(1062), 1, + STATE(1044), 1, + aux_sym_argument_list_repeat1, + [53540] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1096), 1, + ACTIONS(574), 1, + anon_sym_RPAREN, + ACTIONS(2476), 1, + anon_sym_COMMA, + STATE(1065), 1, aux_sym_expression_list_repeat1, - [62467] = 6, + [53553] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2496), 1, - anon_sym_LF, - STATE(1063), 1, sym_comment, - ACTIONS(2498), 2, - anon_sym_SEMI, + ACTIONS(404), 1, anon_sym_RBRACE, - [62487] = 7, + ACTIONS(2478), 1, + anon_sym_COMMA, + STATE(1046), 1, + aux_sym_literal_value_repeat1, + [53566] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1575), 1, + sym_comment, + ACTIONS(1579), 1, anon_sym_RBRACK, - ACTIONS(2500), 1, + ACTIONS(2480), 1, anon_sym_COMMA, - STATE(1007), 1, + STATE(991), 1, aux_sym_type_arguments_repeat1, - STATE(1064), 1, - sym_comment, - [62509] = 5, + [53579] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1065), 1, sym_comment, - ACTIONS(2386), 3, + ACTIONS(588), 1, anon_sym_RPAREN, + ACTIONS(2482), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [62527] = 7, + STATE(1065), 1, + aux_sym_expression_list_repeat1, + [53592] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(422), 1, anon_sym_RBRACE, - ACTIONS(2502), 1, + ACTIONS(2484), 1, anon_sym_COMMA, - STATE(1025), 1, + STATE(1046), 1, aux_sym_literal_value_repeat1, - STATE(1066), 1, - sym_comment, - [62549] = 6, + [53605] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2504), 1, - anon_sym_DQUOTE, - STATE(1067), 1, sym_comment, - ACTIONS(2506), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [62569] = 6, + ACTIONS(2190), 1, + anon_sym_COLON, + ACTIONS(2472), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53616] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2508), 1, - anon_sym_LF, - STATE(1068), 1, sym_comment, - ACTIONS(2510), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [62589] = 7, + ACTIONS(1246), 1, + anon_sym_RPAREN, + ACTIONS(1248), 1, + anon_sym_COMMA, + STATE(1047), 1, + aux_sym_argument_list_repeat1, + [53629] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(408), 1, + sym_comment, + ACTIONS(402), 1, anon_sym_RBRACE, - ACTIONS(2512), 1, + ACTIONS(2486), 1, anon_sym_COMMA, - STATE(1025), 1, + STATE(1046), 1, aux_sym_literal_value_repeat1, - STATE(1069), 1, - sym_comment, - [62611] = 7, + [53642] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(476), 1, + sym_comment, + ACTIONS(484), 1, anon_sym_RPAREN, - ACTIONS(2514), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - STATE(1027), 1, + STATE(1044), 1, aux_sym_argument_list_repeat1, - STATE(1070), 1, + [53655] = 4, + ACTIONS(3), 1, sym_comment, - [62633] = 6, + ACTIONS(1569), 1, + anon_sym_RBRACK, + ACTIONS(2490), 1, + anon_sym_COMMA, + STATE(991), 1, + aux_sym_type_arguments_repeat1, + [53668] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2218), 1, - anon_sym_LPAREN, - STATE(1071), 1, sym_comment, - ACTIONS(2422), 2, + ACTIONS(2330), 3, anon_sym_COMMA, anon_sym_RBRACK, - [62653] = 6, + anon_sym_COLON, + [53677] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2516), 1, - anon_sym_LF, - STATE(1072), 1, sym_comment, - ACTIONS(2518), 2, - anon_sym_SEMI, + ACTIONS(2344), 1, + anon_sym_COMMA, + ACTIONS(2346), 1, anon_sym_RBRACE, - [62673] = 5, + STATE(1049), 1, + aux_sym_literal_value_repeat1, + [53690] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1073), 1, sym_comment, - ACTIONS(2520), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [62691] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_RBRACE, - ACTIONS(2522), 1, + ACTIONS(520), 1, + anon_sym_RPAREN, + ACTIONS(2492), 1, anon_sym_COMMA, - STATE(1025), 1, - aux_sym_literal_value_repeat1, - STATE(1074), 1, - sym_comment, - [62713] = 7, + STATE(1065), 1, + aux_sym_expression_list_repeat1, + [53703] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2268), 1, - anon_sym_COMMA, - ACTIONS(2270), 1, - anon_sym_RBRACE, - STATE(1037), 1, - aux_sym_literal_value_repeat1, - STATE(1075), 1, sym_comment, - [62735] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1585), 1, - anon_sym_RBRACK, - ACTIONS(2524), 1, + ACTIONS(2435), 1, anon_sym_COMMA, - STATE(1007), 1, + ACTIONS(2494), 1, + anon_sym_COLON, + STATE(1029), 1, aux_sym_type_arguments_repeat1, - STATE(1076), 1, - sym_comment, - [62757] = 7, + [53716] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2526), 1, + sym_comment, + ACTIONS(1306), 1, + anon_sym_RPAREN, + ACTIONS(1308), 1, anon_sym_COMMA, - ACTIONS(2528), 1, - anon_sym_RBRACK, - STATE(1043), 1, - aux_sym_type_parameter_list_repeat1, - STATE(1077), 1, + STATE(1110), 1, + aux_sym_argument_list_repeat1, + [53729] = 4, + ACTIONS(3), 1, sym_comment, - [62779] = 7, + ACTIONS(2496), 1, + anon_sym_RPAREN, + ACTIONS(2498), 1, + anon_sym_COMMA, + STATE(1051), 1, + aux_sym_expression_list_repeat1, + [53742] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1435), 1, + sym_comment, + ACTIONS(1369), 1, anon_sym_RPAREN, - ACTIONS(2530), 1, + ACTIONS(2500), 1, anon_sym_COMMA, - STATE(1042), 1, + STATE(1107), 1, aux_sym_parameter_list_repeat1, - STATE(1078), 1, - sym_comment, - [62801] = 5, + [53755] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1079), 1, sym_comment, - ACTIONS(2532), 3, + ACTIONS(1094), 1, anon_sym_RPAREN, + ACTIONS(2502), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [62819] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2534), 1, + STATE(1065), 1, + aux_sym_expression_list_repeat1, + [53768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(526), 1, anon_sym_RPAREN, - ACTIONS(2536), 1, + ACTIONS(2505), 1, anon_sym_COMMA, - STATE(1039), 1, + STATE(1065), 1, aux_sym_expression_list_repeat1, - STATE(1080), 1, + [53781] = 4, + ACTIONS(3), 1, sym_comment, - [62841] = 7, + ACTIONS(2186), 1, + anon_sym_COMMA, + ACTIONS(2188), 1, + anon_sym_RBRACE, + STATE(1075), 1, + aux_sym_literal_value_repeat1, + [53794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_RPAREN, + ACTIONS(1316), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_argument_list_repeat1, + [53807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + [53816] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(834), 1, + sym_comment, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(406), 1, + STATE(569), 1, sym_block, - STATE(1081), 1, + [53829] = 4, + ACTIONS(3), 1, sym_comment, - [62863] = 7, + ACTIONS(2204), 1, + anon_sym_COMMA, + ACTIONS(2206), 1, + anon_sym_RBRACK, + STATE(1072), 1, + aux_sym_type_arguments_repeat1, + [53842] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2392), 1, + sym_comment, + ACTIONS(1581), 1, + anon_sym_RBRACK, + ACTIONS(2507), 1, anon_sym_COMMA, - ACTIONS(2538), 1, - anon_sym_COLON, - STATE(1007), 1, + STATE(991), 1, aux_sym_type_arguments_repeat1, - STATE(1082), 1, + [53855] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(2152), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_literal_value, + [53868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1178), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_literal_value, + [53881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(412), 1, + anon_sym_RBRACE, + ACTIONS(2509), 1, + anon_sym_COMMA, + STATE(1046), 1, + aux_sym_literal_value_repeat1, + [53894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2214), 1, + anon_sym_COMMA, + ACTIONS(2216), 1, + anon_sym_RBRACE, + STATE(1055), 1, + aux_sym_literal_value_repeat1, + [53907] = 3, + ACTIONS(286), 1, sym_comment, - [62885] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(2511), 1, anon_sym_LF, - STATE(1083), 1, - sym_comment, - ACTIONS(2261), 2, + ACTIONS(2374), 2, anon_sym_SEMI, anon_sym_RBRACE, - [62905] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1084), 1, + [53918] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2542), 3, + ACTIONS(2513), 1, + anon_sym_LF, + ACTIONS(2515), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [62923] = 7, + [53929] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(558), 1, + sym_comment, + ACTIONS(2517), 1, anon_sym_RPAREN, - ACTIONS(2544), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - STATE(1085), 1, - sym_comment, - STATE(1096), 1, + STATE(1066), 1, aux_sym_expression_list_repeat1, - [62945] = 7, + [53942] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1274), 1, + sym_comment, + ACTIONS(2521), 1, anon_sym_RPAREN, - ACTIONS(1276), 1, + ACTIONS(2523), 1, anon_sym_COMMA, - STATE(1086), 1, - sym_comment, - STATE(1094), 1, - aux_sym_argument_list_repeat1, - [62967] = 7, + STATE(1021), 1, + aux_sym_parameter_list_repeat1, + [53955] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(1978), 1, - anon_sym_LBRACE, - STATE(373), 1, - sym_literal_value, - STATE(1087), 1, sym_comment, - [62989] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1100), 1, - anon_sym_LBRACE, - ACTIONS(2546), 1, + ACTIONS(2525), 1, anon_sym_COMMA, - STATE(1088), 2, + ACTIONS(2527), 1, + anon_sym_RBRACK, + STATE(1057), 1, + aux_sym_type_arguments_repeat1, + [53968] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(2529), 1, + anon_sym_RPAREN, + ACTIONS(2531), 1, + anon_sym_COMMA, + STATE(1060), 1, aux_sym_expression_list_repeat1, - [63009] = 7, + [53981] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1749), 1, - anon_sym_DQUOTE, - ACTIONS(2549), 1, - sym_raw_string_literal, - STATE(265), 1, - sym_interpreted_string_literal, - STATE(1089), 1, sym_comment, - [63031] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1379), 1, + ACTIONS(2533), 3, anon_sym_RPAREN, - ACTIONS(2551), 1, anon_sym_COMMA, - STATE(1042), 1, - aux_sym_parameter_list_repeat1, - STATE(1090), 1, - sym_comment, - [63053] = 5, + anon_sym_RBRACK, + [53990] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1091), 1, sym_comment, - ACTIONS(2553), 3, + ACTIONS(2535), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [63071] = 5, + [53999] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1092), 1, sym_comment, - ACTIONS(2555), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [63089] = 7, + ACTIONS(31), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + anon_sym_LPAREN, + STATE(332), 1, + sym_block, + [54012] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1749), 1, - anon_sym_DQUOTE, - ACTIONS(2557), 1, - sym_raw_string_literal, - STATE(255), 1, - sym_interpreted_string_literal, - STATE(1093), 1, sym_comment, - [63111] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(464), 1, + ACTIONS(446), 1, anon_sym_RPAREN, - ACTIONS(2559), 1, + ACTIONS(2537), 1, anon_sym_COMMA, - STATE(1027), 1, + STATE(1044), 1, aux_sym_argument_list_repeat1, - STATE(1094), 1, - sym_comment, - [63133] = 5, + [54025] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1095), 1, sym_comment, - ACTIONS(2561), 3, + ACTIONS(410), 1, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [63151] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1100), 1, - anon_sym_RPAREN, - ACTIONS(2563), 1, + ACTIONS(2539), 1, anon_sym_COMMA, - STATE(1096), 2, - sym_comment, - aux_sym_expression_list_repeat1, - [63171] = 7, + STATE(1046), 1, + aux_sym_literal_value_repeat1, + [54038] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, + sym_comment, + ACTIONS(742), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1565), 1, anon_sym_LBRACE, - STATE(399), 1, - sym_literal_value, - STATE(1097), 1, - sym_comment, - [63193] = 5, + STATE(374), 1, + sym_block, + [54051] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1098), 1, sym_comment, - ACTIONS(2566), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [63211] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2568), 1, + ACTIONS(2541), 1, anon_sym_RPAREN, - ACTIONS(2570), 1, + ACTIONS(2543), 1, anon_sym_COMMA, - STATE(1090), 1, - aux_sym_parameter_list_repeat1, STATE(1099), 1, + aux_sym_expression_list_repeat1, + [54064] = 3, + ACTIONS(286), 1, sym_comment, - [63233] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2572), 1, + ACTIONS(2545), 1, anon_sym_LF, - STATE(1100), 1, - sym_comment, - ACTIONS(2574), 2, + ACTIONS(2184), 2, anon_sym_SEMI, anon_sym_RBRACE, - [63253] = 7, + [54075] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1282), 1, + sym_comment, + ACTIONS(2547), 1, anon_sym_RPAREN, - ACTIONS(1284), 1, + ACTIONS(2549), 1, anon_sym_COMMA, - STATE(1015), 1, - aux_sym_argument_list_repeat1, - STATE(1101), 1, - sym_comment, - [63275] = 7, + STATE(1064), 1, + aux_sym_parameter_list_repeat1, + [54088] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(834), 1, - anon_sym_LPAREN, - ACTIONS(1553), 1, - anon_sym_LBRACE, - STATE(363), 1, - sym_block, - STATE(1102), 1, sym_comment, - [63297] = 7, + ACTIONS(2243), 1, + anon_sym_COMMA, + ACTIONS(2245), 1, + anon_sym_RBRACE, + STATE(1101), 1, + aux_sym_literal_value_repeat1, + [54101] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2576), 1, + sym_comment, + ACTIONS(560), 1, anon_sym_RPAREN, - ACTIONS(2578), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - STATE(1103), 1, - sym_comment, - STATE(1113), 1, + STATE(1065), 1, aux_sym_expression_list_repeat1, - [63319] = 7, + [54114] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(637), 1, - anon_sym_LPAREN, - ACTIONS(1964), 1, - anon_sym_LBRACE, - STATE(336), 1, - sym_literal_value, - STATE(1104), 1, sym_comment, - [63341] = 7, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(2553), 1, + sym_raw_string_literal, + STATE(1132), 1, + sym_interpreted_string_literal, + [54127] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1286), 1, + sym_comment, + ACTIONS(1302), 1, anon_sym_RPAREN, - ACTIONS(1288), 1, + ACTIONS(1304), 1, anon_sym_COMMA, - STATE(1059), 1, - aux_sym_argument_list_repeat1, STATE(1105), 1, - sym_comment, - [63363] = 7, + aux_sym_argument_list_repeat1, + [54140] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2214), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_RPAREN, + ACTIONS(1322), 1, anon_sym_COMMA, - ACTIONS(2216), 1, - anon_sym_RBRACE, - STATE(1106), 1, + STATE(1086), 1, + aux_sym_argument_list_repeat1, + [54153] = 3, + ACTIONS(286), 1, sym_comment, - STATE(1115), 1, - aux_sym_literal_value_repeat1, - [63385] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1107), 1, + ACTIONS(2555), 1, + anon_sym_LF, + ACTIONS(2557), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [54164] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2580), 3, + ACTIONS(2559), 1, + anon_sym_LF, + ACTIONS(2561), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [63403] = 7, + [54175] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2202), 1, - anon_sym_COMMA, - ACTIONS(2204), 1, - anon_sym_RBRACE, - STATE(1069), 1, - aux_sym_literal_value_repeat1, - STATE(1108), 1, sym_comment, - [63425] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1318), 1, + ACTIONS(522), 1, anon_sym_RPAREN, - ACTIONS(1320), 1, + ACTIONS(2563), 1, anon_sym_COMMA, - STATE(1109), 1, - sym_comment, - STATE(1119), 1, - aux_sym_argument_list_repeat1, - [63447] = 7, + STATE(1065), 1, + aux_sym_expression_list_repeat1, + [54188] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(584), 1, - anon_sym_RPAREN, - ACTIONS(2582), 1, + sym_comment, + ACTIONS(1336), 1, anon_sym_COMMA, - STATE(1096), 1, + ACTIONS(1621), 1, + anon_sym_LBRACE, + STATE(1019), 1, aux_sym_expression_list_repeat1, - STATE(1110), 1, - sym_comment, - [63469] = 7, + [54201] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(2584), 1, - sym_identifier, - STATE(667), 1, - sym_parameter_list, - STATE(1111), 1, sym_comment, - [63491] = 7, + ACTIONS(418), 1, + anon_sym_RBRACE, + ACTIONS(2565), 1, + anon_sym_COMMA, + STATE(1046), 1, + aux_sym_literal_value_repeat1, + [54214] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2188), 1, + sym_comment, + ACTIONS(2309), 1, anon_sym_COMMA, - ACTIONS(2190), 1, + ACTIONS(2311), 1, anon_sym_RBRACE, - STATE(1074), 1, + STATE(1087), 1, aux_sym_literal_value_repeat1, - STATE(1112), 1, - sym_comment, - [63513] = 7, + [54227] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(528), 1, + sym_comment, + ACTIONS(2567), 1, anon_sym_RPAREN, - ACTIONS(2586), 1, + ACTIONS(2569), 1, anon_sym_COMMA, - STATE(1096), 1, + STATE(1093), 1, aux_sym_expression_list_repeat1, - STATE(1113), 1, - sym_comment, - [63535] = 7, + [54240] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2588), 1, - anon_sym_COMMA, - ACTIONS(2590), 1, - anon_sym_RBRACK, - STATE(1076), 1, - aux_sym_type_arguments_repeat1, - STATE(1114), 1, sym_comment, - [63557] = 7, + ACTIONS(742), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym_block, + [54253] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(406), 1, - anon_sym_RBRACE, - ACTIONS(2592), 1, - anon_sym_COMMA, - STATE(1025), 1, - aux_sym_literal_value_repeat1, - STATE(1115), 1, sym_comment, - [63579] = 7, + ACTIONS(500), 1, + anon_sym_RPAREN, + ACTIONS(2571), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_argument_list_repeat1, + [54266] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2594), 1, - anon_sym_LPAREN, - STATE(912), 1, - sym_var_spec, - STATE(1116), 1, sym_comment, - [63601] = 7, + ACTIONS(1553), 1, + anon_sym_RBRACK, + ACTIONS(2573), 1, + anon_sym_COMMA, + STATE(1043), 1, + aux_sym_type_parameter_list_repeat1, + [54279] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2251), 1, - sym_identifier, - ACTIONS(2596), 1, - anon_sym_LPAREN, - STATE(904), 1, - sym_const_spec, - STATE(1117), 1, sym_comment, - [63623] = 5, + ACTIONS(2575), 1, + anon_sym_RPAREN, + ACTIONS(2577), 1, + anon_sym_COMMA, + STATE(1107), 1, + aux_sym_parameter_list_repeat1, + [54292] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1118), 1, sym_comment, - ACTIONS(1342), 3, - anon_sym_COMMA, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_LBRACE, + STATE(393), 1, + sym_literal_value, + [54305] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2580), 1, + anon_sym_LF, + ACTIONS(2582), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, - [63641] = 7, + [54316] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(460), 1, + sym_comment, + ACTIONS(472), 1, anon_sym_RPAREN, - ACTIONS(2598), 1, + ACTIONS(2584), 1, anon_sym_COMMA, - STATE(1027), 1, + STATE(1044), 1, aux_sym_argument_list_repeat1, - STATE(1119), 1, + [54329] = 3, + ACTIONS(286), 1, sym_comment, - [63663] = 7, + ACTIONS(2586), 1, + anon_sym_LF, + ACTIONS(2588), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [54340] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2600), 1, - anon_sym_RPAREN, - ACTIONS(2602), 1, - anon_sym_COMMA, - STATE(1085), 1, - aux_sym_expression_list_repeat1, - STATE(1120), 1, sym_comment, - [63685] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2220), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN, + ACTIONS(2533), 2, anon_sym_COMMA, - ACTIONS(2222), 1, anon_sym_RBRACK, - STATE(1018), 1, - aux_sym_type_arguments_repeat1, - STATE(1121), 1, - sym_comment, - [63707] = 5, + [54351] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1122), 1, sym_comment, - ACTIONS(2604), 2, + ACTIONS(2402), 3, anon_sym_RPAREN, anon_sym_COMMA, - [63724] = 5, + anon_sym_RBRACK, + [54360] = 4, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1123), 1, sym_comment, - ACTIONS(2453), 2, - anon_sym_RPAREN, + ACTIONS(1164), 1, + anon_sym_struct, + ACTIONS(2590), 1, + sym_identifier, + STATE(988), 1, + sym_struct_type, + [54373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2592), 2, anon_sym_COMMA, - [63741] = 6, + anon_sym_RBRACE, + [54381] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1869), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parameter_list, - STATE(1124), 1, sym_comment, - [63760] = 6, + ACTIONS(1970), 1, + anon_sym_LBRACE, + STATE(516), 1, + sym_literal_value, + [54391] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2606), 1, + sym_comment, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2608), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - STATE(1125), 1, + [54401] = 3, + ACTIONS(3), 1, sym_comment, - [63779] = 5, + ACTIONS(2598), 1, + anon_sym_LPAREN, + STATE(475), 1, + sym_parameter_list, + [54411] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1126), 1, sym_comment, - ACTIONS(2229), 2, - anon_sym_RPAREN, - sym_identifier, - [63796] = 6, + ACTIONS(1076), 1, + anon_sym_LBRACE, + STATE(393), 1, + sym_literal_value, + [54421] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(927), 1, - anon_sym_LPAREN, - STATE(349), 1, - sym_argument_list, - STATE(1127), 1, sym_comment, - [63815] = 5, + ACTIONS(1278), 1, + anon_sym_LPAREN, + STATE(504), 1, + sym_parameter_list, + [54431] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1128), 1, sym_comment, - ACTIONS(1940), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63832] = 5, + ACTIONS(2032), 1, + anon_sym_struct, + STATE(988), 1, + sym_struct_type, + [54441] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1129), 1, sym_comment, - ACTIONS(1932), 2, + ACTIONS(2156), 2, anon_sym_SEMI, anon_sym_LBRACE, - [63849] = 6, + [54449] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(786), 1, - anon_sym_LF, - ACTIONS(788), 1, - anon_sym_SEMI, - STATE(1130), 1, sym_comment, - [63868] = 6, + ACTIONS(2575), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54457] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_LPAREN, - STATE(664), 1, - sym_parameter_list, - STATE(1131), 1, sym_comment, - [63887] = 6, + ACTIONS(2600), 1, + anon_sym_LBRACE, + STATE(836), 1, + sym_field_declaration_list, + [54467] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2606), 1, + sym_comment, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - STATE(1132), 1, - sym_comment, - [63906] = 6, + [54477] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(746), 1, - anon_sym_LF, - ACTIONS(748), 1, - anon_sym_SEMI, - STATE(1133), 1, sym_comment, - [63925] = 6, + ACTIONS(1278), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_parameter_list, + [54487] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2612), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_field_declaration_list, - STATE(1134), 1, sym_comment, - [63944] = 6, + ACTIONS(1080), 1, + anon_sym_LPAREN, + STATE(413), 1, + sym_argument_list, + [54497] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1082), 1, - anon_sym_LBRACE, - STATE(399), 1, - sym_literal_value, - STATE(1135), 1, sym_comment, - [63963] = 5, + ACTIONS(2606), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54505] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1136), 1, sym_comment, - ACTIONS(2176), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63980] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - STATE(659), 1, - sym_parameter_list, - STATE(1137), 1, - sym_comment, - [63999] = 5, + STATE(447), 1, + sym_argument_list, + [54515] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1138), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2170), 2, anon_sym_SEMI, anon_sym_LBRACE, - [64016] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2614), 1, - sym_identifier, - ACTIONS(2616), 1, - anon_sym_LPAREN, - STATE(1139), 1, + [54523] = 3, + ACTIONS(286), 1, sym_comment, - [64035] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(852), 1, anon_sym_LF, - ACTIONS(913), 1, + ACTIONS(854), 1, anon_sym_SEMI, - STATE(1140), 1, + [54533] = 3, + ACTIONS(286), 1, sym_comment, - [64054] = 6, + ACTIONS(730), 1, + anon_sym_LF, + ACTIONS(732), 1, + anon_sym_SEMI, + [54543] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1086), 1, - anon_sym_LPAREN, - STATE(421), 1, - sym_argument_list, - STATE(1141), 1, sym_comment, - [64073] = 6, + ACTIONS(1278), 1, + anon_sym_LPAREN, + STATE(670), 1, + sym_parameter_list, + [54553] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1978), 1, - anon_sym_LBRACE, - STATE(373), 1, - sym_literal_value, - STATE(1142), 1, sym_comment, - [64092] = 5, + ACTIONS(2012), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [54561] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1143), 1, sym_comment, - ACTIONS(2266), 2, + ACTIONS(1916), 2, anon_sym_RPAREN, sym_identifier, - [64109] = 5, + [54569] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1144), 1, sym_comment, - ACTIONS(712), 2, + ACTIONS(2006), 2, anon_sym_SEMI, anon_sym_LBRACE, - [64126] = 6, + [54577] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1964), 1, - anon_sym_LBRACE, - STATE(336), 1, - sym_literal_value, - STATE(1145), 1, sym_comment, - [64145] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2618), 1, + ACTIONS(1992), 1, anon_sym_LBRACE, - STATE(274), 1, - sym_field_declaration_list, - STATE(1146), 1, - sym_comment, - [64164] = 6, + STATE(338), 1, + sym_literal_value, + [54587] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_LPAREN, - STATE(661), 1, - sym_parameter_list, - STATE(1147), 1, sym_comment, - [64183] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1148), 1, + ACTIONS(306), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_literal_value, + [54597] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1914), 2, - anon_sym_RPAREN, - sym_identifier, - [64200] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(675), 1, + ACTIONS(2608), 1, anon_sym_LF, - ACTIONS(2620), 1, + ACTIONS(2610), 1, anon_sym_SEMI, - STATE(1149), 1, - sym_comment, - [64219] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1150), 1, + [54607] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2622), 2, - sym_raw_string_literal, - anon_sym_DQUOTE, - [64236] = 6, + ACTIONS(685), 1, + anon_sym_LF, + ACTIONS(2612), 1, + anon_sym_SEMI, + [54617] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LPAREN, - STATE(1151), 1, sym_comment, - [64255] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, + ACTIONS(1278), 1, anon_sym_LPAREN, - STATE(662), 1, + STATE(669), 1, sym_parameter_list, - STATE(1152), 1, + [54627] = 3, + ACTIONS(286), 1, sym_comment, - [64274] = 6, + ACTIONS(782), 1, + anon_sym_LF, + ACTIONS(784), 1, + anon_sym_SEMI, + [54637] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2044), 1, - anon_sym_struct, - STATE(987), 1, - sym_struct_type, - STATE(1153), 1, sym_comment, - [64293] = 6, + ACTIONS(818), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [54645] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, - anon_sym_LPAREN, - STATE(574), 1, - sym_parameter_list, - STATE(1154), 1, sym_comment, - [64312] = 6, + ACTIONS(2614), 2, + sym_raw_string_literal, + anon_sym_DQUOTE, + [54653] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2218), 1, - anon_sym_LPAREN, - ACTIONS(2628), 1, - anon_sym_RPAREN, - STATE(1155), 1, sym_comment, - [64331] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2630), 1, + ACTIONS(2616), 1, anon_sym_LBRACE, - STATE(787), 1, + STATE(790), 1, sym_field_declaration_list, - STATE(1156), 1, - sym_comment, - [64350] = 6, + [54663] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(370), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_literal_value, - STATE(1157), 1, sym_comment, - [64369] = 5, + ACTIONS(921), 1, + anon_sym_LPAREN, + STATE(377), 1, + sym_argument_list, + [54673] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1158), 1, sym_comment, - ACTIONS(2431), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [64386] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2632), 1, + ACTIONS(2618), 1, sym_identifier, - STATE(862), 1, - sym_qualified_type, - STATE(1159), 1, - sym_comment, - [64405] = 6, + ACTIONS(2620), 1, + anon_sym_LPAREN, + [54683] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2634), 1, + sym_comment, + ACTIONS(1278), 1, anon_sym_LPAREN, - STATE(494), 1, - sym_argument_list, - STATE(1160), 1, + STATE(581), 1, + sym_parameter_list, + [54693] = 3, + ACTIONS(3), 1, sym_comment, - [64424] = 6, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(27), 1, + sym_parameter_list, + [54703] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2636), 1, + sym_comment, + ACTIONS(2618), 1, sym_identifier, - ACTIONS(2638), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - STATE(1161), 1, - sym_comment, - [64443] = 5, + [54713] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1162), 1, sym_comment, - ACTIONS(1365), 2, + ACTIONS(2202), 1, + anon_sym_LPAREN, + ACTIONS(2624), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [64460] = 6, + [54723] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2640), 1, - anon_sym_LF, - ACTIONS(2642), 1, - anon_sym_SEMI, - STATE(1163), 1, sym_comment, - [64479] = 5, + ACTIONS(1278), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_parameter_list, + [54733] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1164), 1, sym_comment, - ACTIONS(2644), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [64496] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2646), 1, + ACTIONS(1809), 1, anon_sym_LPAREN, - STATE(477), 1, + STATE(38), 1, sym_parameter_list, - STATE(1165), 1, - sym_comment, - [64515] = 6, + [54743] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1869), 1, + sym_comment, + ACTIONS(2626), 1, + sym_identifier, + ACTIONS(2628), 1, anon_sym_LPAREN, - STATE(28), 1, - sym_parameter_list, - STATE(1166), 1, + [54753] = 3, + ACTIONS(286), 1, sym_comment, - [64534] = 6, + ACTIONS(2630), 1, + anon_sym_LF, + ACTIONS(2632), 1, + anon_sym_SEMI, + [54763] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, + sym_comment, + ACTIONS(2634), 1, anon_sym_LPAREN, - STATE(522), 1, - sym_parameter_list, - STATE(1167), 1, + STATE(502), 1, + sym_argument_list, + [54773] = 3, + ACTIONS(3), 1, sym_comment, - [64553] = 6, + ACTIONS(2594), 1, + sym_identifier, + ACTIONS(2636), 1, + anon_sym_LPAREN, + [54783] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, + sym_comment, + ACTIONS(1278), 1, anon_sym_LPAREN, - STATE(669), 1, + STATE(623), 1, sym_parameter_list, - STATE(1168), 1, - sym_comment, - [64572] = 5, + [54793] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1169), 1, sym_comment, - ACTIONS(2406), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [64589] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2094), 1, + ACTIONS(2152), 1, anon_sym_LBRACE, - STATE(537), 1, + STATE(355), 1, sym_literal_value, - STATE(1170), 1, - sym_comment, - [64608] = 6, + [54803] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2648), 1, - anon_sym_LF, - ACTIONS(2650), 1, - anon_sym_SEMI, - STATE(1171), 1, sym_comment, - [64627] = 5, + ACTIONS(1178), 1, + anon_sym_LBRACE, + STATE(577), 1, + sym_literal_value, + [54813] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1172), 1, sym_comment, - ACTIONS(2652), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [64644] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1292), 1, + ACTIONS(1278), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(659), 1, sym_parameter_list, - STATE(1173), 1, - sym_comment, - [64663] = 6, + [54823] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1226), 1, + sym_comment, + ACTIONS(2638), 1, anon_sym_LBRACE, - STATE(566), 1, - sym_literal_value, - STATE(1174), 1, + STATE(254), 1, + sym_field_declaration_list, + [54833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2640), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54841] = 3, + ACTIONS(3), 1, sym_comment, - [64682] = 6, + ACTIONS(31), 1, + anon_sym_LBRACE, + STATE(933), 1, + sym_block, + [54851] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2624), 1, + sym_comment, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2654), 1, + ACTIONS(2642), 1, anon_sym_LPAREN, - STATE(1175), 1, - sym_comment, - [64701] = 6, + [54861] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2624), 1, + sym_comment, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2656), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - STATE(1176), 1, + [54871] = 3, + ACTIONS(3), 1, sym_comment, - [64720] = 6, + ACTIONS(2594), 1, + sym_identifier, + ACTIONS(2648), 1, + anon_sym_LPAREN, + [54881] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1110), 1, + sym_comment, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(447), 1, + STATE(571), 1, sym_argument_list, - STATE(1177), 1, + [54891] = 3, + ACTIONS(286), 1, sym_comment, - [64739] = 6, + ACTIONS(2650), 1, + anon_sym_LF, + ACTIONS(2652), 1, + anon_sym_SEMI, + [54901] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2658), 1, - anon_sym_LPAREN, - STATE(1178), 1, sym_comment, - [64758] = 6, + ACTIONS(2462), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54909] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(884), 1, - sym_block, - STATE(1179), 1, sym_comment, - [64777] = 6, + ACTIONS(2654), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, + [54933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2658), 1, + sym_identifier, + STATE(878), 1, + sym_qualified_type, + [54943] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2660), 1, sym_identifier, ACTIONS(2662), 1, anon_sym_LPAREN, - STATE(1180), 1, + [54953] = 2, + ACTIONS(3), 1, sym_comment, - [64796] = 6, + ACTIONS(2235), 2, + anon_sym_RPAREN, + sym_identifier, + [54961] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, + ACTIONS(2472), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54969] = 3, + ACTIONS(286), 1, + sym_comment, ACTIONS(2664), 1, - sym_identifier, + anon_sym_LF, ACTIONS(2666), 1, - anon_sym_LPAREN, - STATE(1181), 1, - sym_comment, - [64815] = 6, + anon_sym_SEMI, + [54979] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1186), 1, - anon_sym_LPAREN, - STATE(590), 1, - sym_argument_list, - STATE(1182), 1, sym_comment, - [64834] = 6, + ACTIONS(2280), 2, + anon_sym_RPAREN, + sym_identifier, + [54987] = 3, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(334), 1, + STATE(316), 1, sym_argument_list, - STATE(1183), 1, - sym_comment, - [64853] = 6, + [54997] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2670), 1, - anon_sym_LF, - ACTIONS(2672), 1, - anon_sym_SEMI, - STATE(1184), 1, + sym_identifier, + [55004] = 2, + ACTIONS(3), 1, sym_comment, - [64872] = 5, + ACTIONS(2672), 1, + sym_identifier, + [55011] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1185), 1, sym_comment, - ACTIONS(2674), 2, + ACTIONS(2674), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [64889] = 6, + [55018] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2676), 1, - anon_sym_LF, - ACTIONS(2678), 1, - anon_sym_SEMI, - STATE(1186), 1, + anon_sym_RPAREN, + [55025] = 2, + ACTIONS(3), 1, sym_comment, - [64908] = 5, + ACTIONS(2678), 1, + anon_sym_EQ, + [55032] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1187), 1, sym_comment, - ACTIONS(2680), 2, + ACTIONS(2680), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [64925] = 5, + [55039] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2682), 1, - sym_identifier, - STATE(1188), 1, sym_comment, - [64941] = 5, + ACTIONS(2682), 1, + anon_sym_RPAREN, + [55046] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2684), 1, - anon_sym_LBRACE, - STATE(1189), 1, sym_comment, - [64957] = 5, + ACTIONS(2684), 1, + sym_identifier, + [55053] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1190), 1, - sym_comment, - [64973] = 5, + [55060] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2344), 1, - anon_sym_RBRACE, - STATE(1191), 1, sym_comment, - [64989] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(2688), 1, anon_sym_RPAREN, - STATE(1192), 1, - sym_comment, - [65005] = 5, + [55067] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2690), 1, - anon_sym_RPAREN, - STATE(1193), 1, sym_comment, - [65021] = 5, + ACTIONS(2346), 1, + anon_sym_RBRACE, + [55074] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2692), 1, - sym_identifier, - STATE(1194), 1, sym_comment, - [65037] = 5, + ACTIONS(2690), 1, + anon_sym_COLON_EQ, + [55081] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_LBRACK, - STATE(1195), 1, sym_comment, - [65053] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, + ACTIONS(2692), 1, anon_sym_LBRACE, - STATE(1196), 1, - sym_comment, - [65069] = 5, + [55088] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2204), 1, - anon_sym_RBRACE, - STATE(1197), 1, sym_comment, - [65085] = 5, + ACTIONS(2694), 1, + anon_sym_SEMI, + [55095] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(1198), 1, sym_comment, - [65101] = 5, + ACTIONS(2696), 1, + anon_sym_COLON, + [55102] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2700), 1, - anon_sym_RPAREN, - STATE(1199), 1, sym_comment, - [65117] = 5, + ACTIONS(2188), 1, + anon_sym_RBRACE, + [55109] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2702), 1, - anon_sym_RBRACK, - STATE(1200), 1, sym_comment, - [65133] = 5, + ACTIONS(2698), 1, + anon_sym_SEMI, + [55116] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2704), 1, - anon_sym_LBRACE, - STATE(1201), 1, sym_comment, - [65149] = 5, + ACTIONS(2700), 1, + anon_sym_COLON, + [55123] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2568), 1, - anon_sym_RPAREN, - STATE(1202), 1, sym_comment, - [65165] = 5, + ACTIONS(2702), 1, + anon_sym_LBRACE, + [55130] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2216), 1, - anon_sym_RBRACE, - STATE(1203), 1, sym_comment, - [65181] = 5, + ACTIONS(2704), 1, + anon_sym_RBRACE, + [55137] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2706), 1, - anon_sym_chan, - STATE(1204), 1, sym_comment, - [65197] = 5, + ACTIONS(2706), 1, + sym_identifier, + [55144] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2708), 1, - sym_directive, - STATE(1205), 1, sym_comment, - [65213] = 5, + ACTIONS(2708), 1, + anon_sym_SEMI, + [55151] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2710), 1, sym_identifier, - STATE(1206), 1, + [55158] = 2, + ACTIONS(3), 1, sym_comment, - [65229] = 5, + ACTIONS(2325), 1, + anon_sym_RBRACE, + [55165] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2712), 1, anon_sym_LBRACE, - STATE(1207), 1, - sym_comment, - [65245] = 5, + [55172] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2714), 1, - anon_sym_SEMI, - STATE(1208), 1, sym_comment, - [65261] = 5, + ACTIONS(2714), 1, + anon_sym_RBRACK, + [55179] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2716), 1, - anon_sym_chan, - STATE(1209), 1, sym_comment, - [65277] = 5, + ACTIONS(2716), 1, + anon_sym_LBRACE, + [55186] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2718), 1, - anon_sym_SEMI, - STATE(1210), 1, sym_comment, - [65293] = 5, + ACTIONS(2718), 1, + anon_sym_RBRACE, + [55193] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2720), 1, - sym_identifier, - STATE(1211), 1, sym_comment, - [65309] = 5, + ACTIONS(2720), 1, + anon_sym_LBRACE, + [55200] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_SEMI, - STATE(1212), 1, sym_comment, - [65325] = 5, + ACTIONS(2722), 1, + anon_sym_chan, + [55207] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2724), 1, - anon_sym_RPAREN, - STATE(1213), 1, + anon_sym_LBRACE, + [55214] = 2, + ACTIONS(3), 1, sym_comment, - [65341] = 5, + ACTIONS(2427), 1, + anon_sym_RPAREN, + [55221] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1214), 1, - sym_comment, - [65357] = 5, + [55228] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2728), 1, - anon_sym_EQ, - STATE(1215), 1, sym_comment, - [65373] = 5, + ACTIONS(2728), 1, + anon_sym_chan, + [55235] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2730), 1, - anon_sym_RBRACE, - STATE(1216), 1, sym_comment, - [65389] = 5, + ACTIONS(2730), 1, + anon_sym_RPAREN, + [55242] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2732), 1, - anon_sym_COLON_EQ, - STATE(1217), 1, sym_comment, - [65405] = 5, + ACTIONS(2732), 1, + anon_sym_LBRACE, + [55249] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2734), 1, anon_sym_RPAREN, - STATE(1218), 1, - sym_comment, - [65421] = 5, + [55256] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2736), 1, - sym_identifier, - STATE(1219), 1, sym_comment, - [65437] = 5, + ACTIONS(2736), 1, + anon_sym_EQ, + [55263] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2738), 1, - anon_sym_RPAREN, - STATE(1220), 1, sym_comment, - [65453] = 5, + ACTIONS(2738), 1, + anon_sym_chan, + [55270] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2740), 1, - anon_sym_LBRACE, - STATE(1221), 1, sym_comment, - [65469] = 5, + ACTIONS(2740), 1, + anon_sym_RBRACK, + [55277] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2742), 1, - anon_sym_COLON, - STATE(1222), 1, sym_comment, - [65485] = 5, + ACTIONS(2742), 1, + anon_sym_RBRACK, + [55284] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2744), 1, - anon_sym_RBRACE, - STATE(1223), 1, sym_comment, - [65501] = 5, + ACTIONS(2744), 1, + anon_sym_LBRACE, + [55291] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2408), 1, - anon_sym_RPAREN, - STATE(1224), 1, sym_comment, - [65517] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(2746), 1, - anon_sym_RBRACE, - STATE(1225), 1, - sym_comment, - [65533] = 5, + anon_sym_LBRACE, + [55298] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2748), 1, - anon_sym_COLON, - STATE(1226), 1, sym_comment, - [65549] = 5, + ACTIONS(2748), 1, + anon_sym_RPAREN, + [55305] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2750), 1, - anon_sym_RBRACE, - STATE(1227), 1, sym_comment, - [65565] = 5, + ACTIONS(2750), 1, + sym_identifier, + [55312] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2752), 1, anon_sym_LBRACE, - STATE(1228), 1, - sym_comment, - [65581] = 5, + [55319] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2754), 1, - anon_sym_RBRACK, - STATE(1229), 1, sym_comment, - [65597] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2756), 1, + ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1230), 1, + [55326] = 2, + ACTIONS(3), 1, sym_comment, - [65613] = 5, + ACTIONS(2756), 1, + anon_sym_RPAREN, + [55333] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2758), 1, + anon_sym_LBRACE, + [55340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, anon_sym_RPAREN, - STATE(1231), 1, + [55347] = 2, + ACTIONS(3), 1, sym_comment, - [65629] = 5, + ACTIONS(2216), 1, + anon_sym_RBRACE, + [55354] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_RPAREN, - STATE(1232), 1, sym_comment, - [65645] = 5, + ACTIONS(2760), 1, + anon_sym_LBRACE, + [55361] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2762), 1, - anon_sym_chan, - STATE(1233), 1, sym_comment, - [65661] = 5, + ACTIONS(2762), 1, + sym_identifier, + [55368] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2764), 1, anon_sym_RBRACK, - STATE(1234), 1, - sym_comment, - [65677] = 5, + [55375] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2766), 1, - sym_identifier, - STATE(1235), 1, sym_comment, - [65693] = 5, + ACTIONS(2766), 1, + anon_sym_RPAREN, + [55382] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2768), 1, - anon_sym_LBRACE, - STATE(1236), 1, sym_comment, - [65709] = 5, + ACTIONS(2768), 1, + anon_sym_RPAREN, + [55389] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2770), 1, - anon_sym_chan, - STATE(1237), 1, sym_comment, - [65725] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2772), 1, + ACTIONS(2770), 1, anon_sym_RPAREN, - STATE(1238), 1, - sym_comment, - [65741] = 5, + [55396] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2449), 1, - anon_sym_RPAREN, - STATE(1239), 1, sym_comment, - [65757] = 5, + ACTIONS(2245), 1, + anon_sym_RBRACE, + [55403] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2774), 1, - anon_sym_LBRACE, - STATE(1240), 1, sym_comment, - [65773] = 5, + ACTIONS(2547), 1, + anon_sym_RPAREN, + [55410] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2776), 1, - anon_sym_RBRACK, - STATE(1241), 1, sym_comment, - [65789] = 5, + ACTIONS(2772), 1, + anon_sym_COLON, + [55417] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2318), 1, - anon_sym_RBRACE, - STATE(1242), 1, sym_comment, - [65805] = 5, + ACTIONS(2774), 1, + anon_sym_chan, + [55424] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2778), 1, - anon_sym_RPAREN, - STATE(1243), 1, sym_comment, - [65821] = 5, + ACTIONS(2776), 1, + anon_sym_LPAREN, + [55431] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2780), 1, - sym_identifier, - STATE(1244), 1, sym_comment, - [65837] = 5, + ACTIONS(2778), 1, + sym_identifier, + [55438] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2782), 1, - anon_sym_SLASH, - STATE(1245), 1, sym_comment, - [65853] = 5, + ACTIONS(2780), 1, + ts_builtin_sym_end, + [55445] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2784), 1, - anon_sym_LPAREN, - STATE(1246), 1, sym_comment, - [65869] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, ACTIONS(2782), 1, - aux_sym_comment_token1, - STATE(1247), 1, + anon_sym_RPAREN, + [55452] = 2, + ACTIONS(3), 1, sym_comment, - [65885] = 5, + ACTIONS(2784), 1, + anon_sym_RPAREN, + [55459] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2786), 1, anon_sym_LBRACE, - STATE(1248), 1, - sym_comment, - [65901] = 5, + [55466] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2788), 1, - anon_sym_LBRACE, - STATE(1249), 1, sym_comment, - [65917] = 5, + ACTIONS(2788), 1, + sym_identifier, + [55473] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2790), 1, anon_sym_RPAREN, - STATE(1250), 1, - sym_comment, - [65933] = 5, + [55480] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + sym_comment, ACTIONS(2792), 1, anon_sym_RPAREN, - STATE(1251), 1, - sym_comment, - [65949] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2794), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym_comment, - [65965] = 5, + [55487] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2796), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_comment, - [65981] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2798), 1, - anon_sym_LPAREN, - STATE(1254), 1, sym_comment, - [65997] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2270), 1, + ACTIONS(2311), 1, anon_sym_RBRACE, - STATE(1255), 1, - sym_comment, - [66013] = 5, + [55494] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2800), 1, - anon_sym_RPAREN, - STATE(1256), 1, - sym_comment, - [66029] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2802), 1, - ts_builtin_sym_end, - STATE(1257), 1, sym_comment, - [66045] = 5, + ACTIONS(2794), 1, + anon_sym_LBRACK, + [55501] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2804), 1, - anon_sym_EQ, - STATE(1258), 1, sym_comment, - [66061] = 5, + ACTIONS(2796), 1, + anon_sym_RPAREN, + [55508] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2806), 1, - sym_identifier, - STATE(1259), 1, sym_comment, - [66077] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(2798), 1, anon_sym_LBRACE, - STATE(1260), 1, - sym_comment, - [66093] = 5, + [55515] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2810), 1, - sym_identifier, - STATE(1261), 1, sym_comment, - [66109] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2812), 1, + ACTIONS(2800), 1, anon_sym_RBRACE, - STATE(1262), 1, - sym_comment, - [66125] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2814), 1, - anon_sym_LBRACK, - STATE(1263), 1, - sym_comment, - [66141] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2816), 1, - anon_sym_LBRACE, - STATE(1264), 1, - sym_comment, - [66157] = 5, + [55522] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2818), 1, - anon_sym_RBRACK, - STATE(1265), 1, sym_comment, - [66173] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2628), 1, + ACTIONS(2624), 1, anon_sym_RPAREN, - STATE(1266), 1, - sym_comment, - [66189] = 5, + [55529] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2820), 1, - anon_sym_COLON, - STATE(1267), 1, sym_comment, - [66205] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2190), 1, + ACTIONS(2802), 1, anon_sym_RBRACE, - STATE(1268), 1, - sym_comment, - [66221] = 5, + [55536] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2822), 1, - anon_sym_RPAREN, - STATE(1269), 1, sym_comment, - [66237] = 5, + ACTIONS(2804), 1, + anon_sym_RBRACE, + [55543] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2824), 1, - anon_sym_RPAREN, - STATE(1270), 1, sym_comment, - [66253] = 5, + ACTIONS(2806), 1, + anon_sym_RBRACK, + [55550] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2826), 1, - sym_identifier, - STATE(1271), 1, sym_comment, - [66269] = 5, + ACTIONS(2808), 1, + anon_sym_LBRACK, + [55557] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2828), 1, - anon_sym_RPAREN, - STATE(1272), 1, sym_comment, - [66285] = 5, + ACTIONS(2202), 1, + anon_sym_LPAREN, + [55564] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2830), 1, - aux_sym_comment_token2, - STATE(1273), 1, sym_comment, - [66301] = 5, + ACTIONS(2810), 1, + sym_identifier, + [55571] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2832), 1, - anon_sym_LBRACK, - STATE(1274), 1, sym_comment, - [66317] = 5, + ACTIONS(2812), 1, + anon_sym_LBRACK, + [55578] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2218), 1, - anon_sym_LPAREN, - STATE(1275), 1, sym_comment, - [66333] = 5, + ACTIONS(2814), 1, + anon_sym_LPAREN, + [55585] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(290), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(292), 1, - anon_sym_SLASH_STAR, - ACTIONS(2834), 1, - aux_sym_comment_token1, - STATE(1276), 1, sym_comment, - [66349] = 5, + ACTIONS(2816), 1, + anon_sym_LPAREN, + [55592] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2836), 1, - anon_sym_LBRACK, - STATE(1277), 1, sym_comment, - [66365] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2818), 1, anon_sym_LPAREN, - STATE(1278), 1, - sym_comment, - [66381] = 5, + [55599] = 2, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2840), 1, - anon_sym_LPAREN, - STATE(1279), 1, sym_comment, - [66397] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH2, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2842), 1, + ACTIONS(2820), 1, anon_sym_LPAREN, - STATE(1280), 1, + [55606] = 2, + ACTIONS(3), 1, sym_comment, - [66413] = 1, - ACTIONS(2844), 1, - ts_builtin_sym_end, - [66417] = 1, - ACTIONS(2846), 1, - ts_builtin_sym_end, + ACTIONS(2822), 1, + anon_sym_LBRACK, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(27)] = 0, - [SMALL_STATE(28)] = 107, - [SMALL_STATE(29)] = 214, - [SMALL_STATE(30)] = 337, - [SMALL_STATE(31)] = 444, - [SMALL_STATE(32)] = 564, - [SMALL_STATE(33)] = 666, - [SMALL_STATE(34)] = 794, - [SMALL_STATE(35)] = 922, - [SMALL_STATE(36)] = 1050, - [SMALL_STATE(37)] = 1178, - [SMALL_STATE(38)] = 1306, - [SMALL_STATE(39)] = 1434, - [SMALL_STATE(40)] = 1559, - [SMALL_STATE(41)] = 1684, - [SMALL_STATE(42)] = 1809, - [SMALL_STATE(43)] = 1934, - [SMALL_STATE(44)] = 2059, - [SMALL_STATE(45)] = 2184, - [SMALL_STATE(46)] = 2309, - [SMALL_STATE(47)] = 2434, - [SMALL_STATE(48)] = 2559, - [SMALL_STATE(49)] = 2684, - [SMALL_STATE(50)] = 2809, - [SMALL_STATE(51)] = 2934, - [SMALL_STATE(52)] = 3056, - [SMALL_STATE(53)] = 3175, - [SMALL_STATE(54)] = 3292, - [SMALL_STATE(55)] = 3408, - [SMALL_STATE(56)] = 3524, - [SMALL_STATE(57)] = 3640, - [SMALL_STATE(58)] = 3756, - [SMALL_STATE(59)] = 3872, - [SMALL_STATE(60)] = 3988, - [SMALL_STATE(61)] = 4104, - [SMALL_STATE(62)] = 4220, - [SMALL_STATE(63)] = 4336, - [SMALL_STATE(64)] = 4452, - [SMALL_STATE(65)] = 4568, - [SMALL_STATE(66)] = 4684, - [SMALL_STATE(67)] = 4800, - [SMALL_STATE(68)] = 4916, - [SMALL_STATE(69)] = 5032, - [SMALL_STATE(70)] = 5148, - [SMALL_STATE(71)] = 5264, - [SMALL_STATE(72)] = 5380, - [SMALL_STATE(73)] = 5496, - [SMALL_STATE(74)] = 5612, - [SMALL_STATE(75)] = 5728, - [SMALL_STATE(76)] = 5844, - [SMALL_STATE(77)] = 5960, - [SMALL_STATE(78)] = 6073, - [SMALL_STATE(79)] = 6186, - [SMALL_STATE(80)] = 6299, - [SMALL_STATE(81)] = 6412, - [SMALL_STATE(82)] = 6525, - [SMALL_STATE(83)] = 6638, - [SMALL_STATE(84)] = 6751, - [SMALL_STATE(85)] = 6864, - [SMALL_STATE(86)] = 6977, - [SMALL_STATE(87)] = 7090, - [SMALL_STATE(88)] = 7203, - [SMALL_STATE(89)] = 7316, - [SMALL_STATE(90)] = 7429, - [SMALL_STATE(91)] = 7542, - [SMALL_STATE(92)] = 7655, - [SMALL_STATE(93)] = 7768, - [SMALL_STATE(94)] = 7881, - [SMALL_STATE(95)] = 7994, - [SMALL_STATE(96)] = 8107, - [SMALL_STATE(97)] = 8220, - [SMALL_STATE(98)] = 8333, - [SMALL_STATE(99)] = 8446, - [SMALL_STATE(100)] = 8559, - [SMALL_STATE(101)] = 8672, - [SMALL_STATE(102)] = 8785, - [SMALL_STATE(103)] = 8898, - [SMALL_STATE(104)] = 9011, - [SMALL_STATE(105)] = 9124, - [SMALL_STATE(106)] = 9237, - [SMALL_STATE(107)] = 9350, - [SMALL_STATE(108)] = 9463, - [SMALL_STATE(109)] = 9576, - [SMALL_STATE(110)] = 9689, - [SMALL_STATE(111)] = 9802, - [SMALL_STATE(112)] = 9915, - [SMALL_STATE(113)] = 10028, - [SMALL_STATE(114)] = 10141, - [SMALL_STATE(115)] = 10254, - [SMALL_STATE(116)] = 10367, - [SMALL_STATE(117)] = 10480, - [SMALL_STATE(118)] = 10593, - [SMALL_STATE(119)] = 10706, - [SMALL_STATE(120)] = 10819, - [SMALL_STATE(121)] = 10932, - [SMALL_STATE(122)] = 11045, - [SMALL_STATE(123)] = 11158, - [SMALL_STATE(124)] = 11271, - [SMALL_STATE(125)] = 11384, - [SMALL_STATE(126)] = 11497, - [SMALL_STATE(127)] = 11610, - [SMALL_STATE(128)] = 11723, - [SMALL_STATE(129)] = 11836, - [SMALL_STATE(130)] = 11949, - [SMALL_STATE(131)] = 12062, - [SMALL_STATE(132)] = 12172, - [SMALL_STATE(133)] = 12282, - [SMALL_STATE(134)] = 12392, - [SMALL_STATE(135)] = 12502, - [SMALL_STATE(136)] = 12612, - [SMALL_STATE(137)] = 12722, - [SMALL_STATE(138)] = 12832, - [SMALL_STATE(139)] = 12942, - [SMALL_STATE(140)] = 13052, - [SMALL_STATE(141)] = 13162, - [SMALL_STATE(142)] = 13272, - [SMALL_STATE(143)] = 13382, - [SMALL_STATE(144)] = 13492, - [SMALL_STATE(145)] = 13602, - [SMALL_STATE(146)] = 13712, - [SMALL_STATE(147)] = 13822, - [SMALL_STATE(148)] = 13932, - [SMALL_STATE(149)] = 14042, - [SMALL_STATE(150)] = 14152, - [SMALL_STATE(151)] = 14262, - [SMALL_STATE(152)] = 14372, - [SMALL_STATE(153)] = 14482, - [SMALL_STATE(154)] = 14592, - [SMALL_STATE(155)] = 14702, - [SMALL_STATE(156)] = 14812, - [SMALL_STATE(157)] = 14922, - [SMALL_STATE(158)] = 15032, - [SMALL_STATE(159)] = 15142, - [SMALL_STATE(160)] = 15252, - [SMALL_STATE(161)] = 15362, - [SMALL_STATE(162)] = 15472, - [SMALL_STATE(163)] = 15582, - [SMALL_STATE(164)] = 15692, - [SMALL_STATE(165)] = 15802, - [SMALL_STATE(166)] = 15912, - [SMALL_STATE(167)] = 16022, - [SMALL_STATE(168)] = 16132, - [SMALL_STATE(169)] = 16242, - [SMALL_STATE(170)] = 16352, - [SMALL_STATE(171)] = 16462, - [SMALL_STATE(172)] = 16572, - [SMALL_STATE(173)] = 16682, - [SMALL_STATE(174)] = 16792, - [SMALL_STATE(175)] = 16902, - [SMALL_STATE(176)] = 17012, - [SMALL_STATE(177)] = 17122, - [SMALL_STATE(178)] = 17232, - [SMALL_STATE(179)] = 17342, - [SMALL_STATE(180)] = 17452, - [SMALL_STATE(181)] = 17562, - [SMALL_STATE(182)] = 17672, - [SMALL_STATE(183)] = 17782, - [SMALL_STATE(184)] = 17892, - [SMALL_STATE(185)] = 18002, - [SMALL_STATE(186)] = 18112, - [SMALL_STATE(187)] = 18222, - [SMALL_STATE(188)] = 18332, - [SMALL_STATE(189)] = 18442, - [SMALL_STATE(190)] = 18552, - [SMALL_STATE(191)] = 18662, - [SMALL_STATE(192)] = 18772, - [SMALL_STATE(193)] = 18882, - [SMALL_STATE(194)] = 18992, - [SMALL_STATE(195)] = 19102, - [SMALL_STATE(196)] = 19212, - [SMALL_STATE(197)] = 19322, - [SMALL_STATE(198)] = 19432, - [SMALL_STATE(199)] = 19542, - [SMALL_STATE(200)] = 19652, - [SMALL_STATE(201)] = 19762, - [SMALL_STATE(202)] = 19872, - [SMALL_STATE(203)] = 19982, - [SMALL_STATE(204)] = 20092, - [SMALL_STATE(205)] = 20202, - [SMALL_STATE(206)] = 20312, - [SMALL_STATE(207)] = 20422, - [SMALL_STATE(208)] = 20532, - [SMALL_STATE(209)] = 20642, - [SMALL_STATE(210)] = 20752, - [SMALL_STATE(211)] = 20862, - [SMALL_STATE(212)] = 20972, - [SMALL_STATE(213)] = 21082, - [SMALL_STATE(214)] = 21192, - [SMALL_STATE(215)] = 21302, - [SMALL_STATE(216)] = 21412, - [SMALL_STATE(217)] = 21522, - [SMALL_STATE(218)] = 21632, - [SMALL_STATE(219)] = 21742, - [SMALL_STATE(220)] = 21852, - [SMALL_STATE(221)] = 21962, - [SMALL_STATE(222)] = 22072, - [SMALL_STATE(223)] = 22182, - [SMALL_STATE(224)] = 22292, - [SMALL_STATE(225)] = 22402, - [SMALL_STATE(226)] = 22512, - [SMALL_STATE(227)] = 22622, - [SMALL_STATE(228)] = 22732, - [SMALL_STATE(229)] = 22842, - [SMALL_STATE(230)] = 22952, - [SMALL_STATE(231)] = 23062, - [SMALL_STATE(232)] = 23172, - [SMALL_STATE(233)] = 23282, - [SMALL_STATE(234)] = 23392, - [SMALL_STATE(235)] = 23502, - [SMALL_STATE(236)] = 23612, - [SMALL_STATE(237)] = 23684, - [SMALL_STATE(238)] = 23753, - [SMALL_STATE(239)] = 23822, - [SMALL_STATE(240)] = 23891, - [SMALL_STATE(241)] = 23960, - [SMALL_STATE(242)] = 24039, - [SMALL_STATE(243)] = 24118, - [SMALL_STATE(244)] = 24186, - [SMALL_STATE(245)] = 24250, - [SMALL_STATE(246)] = 24314, - [SMALL_STATE(247)] = 24378, - [SMALL_STATE(248)] = 24442, - [SMALL_STATE(249)] = 24506, - [SMALL_STATE(250)] = 24570, - [SMALL_STATE(251)] = 24634, - [SMALL_STATE(252)] = 24698, - [SMALL_STATE(253)] = 24762, - [SMALL_STATE(254)] = 24858, - [SMALL_STATE(255)] = 24922, - [SMALL_STATE(256)] = 24986, - [SMALL_STATE(257)] = 25050, - [SMALL_STATE(258)] = 25114, - [SMALL_STATE(259)] = 25178, - [SMALL_STATE(260)] = 25242, - [SMALL_STATE(261)] = 25306, - [SMALL_STATE(262)] = 25370, - [SMALL_STATE(263)] = 25434, - [SMALL_STATE(264)] = 25498, - [SMALL_STATE(265)] = 25562, - [SMALL_STATE(266)] = 25626, - [SMALL_STATE(267)] = 25690, - [SMALL_STATE(268)] = 25754, - [SMALL_STATE(269)] = 25818, - [SMALL_STATE(270)] = 25882, - [SMALL_STATE(271)] = 25946, - [SMALL_STATE(272)] = 26010, - [SMALL_STATE(273)] = 26074, - [SMALL_STATE(274)] = 26138, - [SMALL_STATE(275)] = 26202, - [SMALL_STATE(276)] = 26266, - [SMALL_STATE(277)] = 26342, - [SMALL_STATE(278)] = 26406, - [SMALL_STATE(279)] = 26470, - [SMALL_STATE(280)] = 26534, - [SMALL_STATE(281)] = 26598, - [SMALL_STATE(282)] = 26662, - [SMALL_STATE(283)] = 26726, - [SMALL_STATE(284)] = 26790, - [SMALL_STATE(285)] = 26854, - [SMALL_STATE(286)] = 26958, - [SMALL_STATE(287)] = 27022, - [SMALL_STATE(288)] = 27086, - [SMALL_STATE(289)] = 27150, - [SMALL_STATE(290)] = 27214, - [SMALL_STATE(291)] = 27278, - [SMALL_STATE(292)] = 27342, - [SMALL_STATE(293)] = 27406, - [SMALL_STATE(294)] = 27470, - [SMALL_STATE(295)] = 27551, - [SMALL_STATE(296)] = 27626, - [SMALL_STATE(297)] = 27699, - [SMALL_STATE(298)] = 27776, - [SMALL_STATE(299)] = 27855, - [SMALL_STATE(300)] = 27928, - [SMALL_STATE(301)] = 27991, - [SMALL_STATE(302)] = 28053, - [SMALL_STATE(303)] = 28153, - [SMALL_STATE(304)] = 28219, - [SMALL_STATE(305)] = 28319, - [SMALL_STATE(306)] = 28381, - [SMALL_STATE(307)] = 28442, - [SMALL_STATE(308)] = 28503, - [SMALL_STATE(309)] = 28564, - [SMALL_STATE(310)] = 28625, - [SMALL_STATE(311)] = 28686, - [SMALL_STATE(312)] = 28747, - [SMALL_STATE(313)] = 28808, - [SMALL_STATE(314)] = 28869, - [SMALL_STATE(315)] = 28930, - [SMALL_STATE(316)] = 28991, - [SMALL_STATE(317)] = 29052, - [SMALL_STATE(318)] = 29113, - [SMALL_STATE(319)] = 29174, - [SMALL_STATE(320)] = 29235, - [SMALL_STATE(321)] = 29296, - [SMALL_STATE(322)] = 29357, - [SMALL_STATE(323)] = 29418, - [SMALL_STATE(324)] = 29479, - [SMALL_STATE(325)] = 29576, - [SMALL_STATE(326)] = 29637, - [SMALL_STATE(327)] = 29698, - [SMALL_STATE(328)] = 29759, - [SMALL_STATE(329)] = 29820, - [SMALL_STATE(330)] = 29881, - [SMALL_STATE(331)] = 29942, - [SMALL_STATE(332)] = 30003, - [SMALL_STATE(333)] = 30064, - [SMALL_STATE(334)] = 30125, - [SMALL_STATE(335)] = 30186, - [SMALL_STATE(336)] = 30247, - [SMALL_STATE(337)] = 30308, - [SMALL_STATE(338)] = 30369, - [SMALL_STATE(339)] = 30430, - [SMALL_STATE(340)] = 30524, - [SMALL_STATE(341)] = 30594, - [SMALL_STATE(342)] = 30674, - [SMALL_STATE(343)] = 30752, - [SMALL_STATE(344)] = 30822, - [SMALL_STATE(345)] = 30892, - [SMALL_STATE(346)] = 30964, - [SMALL_STATE(347)] = 31038, - [SMALL_STATE(348)] = 31101, - [SMALL_STATE(349)] = 31159, - [SMALL_STATE(350)] = 31217, - [SMALL_STATE(351)] = 31275, - [SMALL_STATE(352)] = 31333, - [SMALL_STATE(353)] = 31391, - [SMALL_STATE(354)] = 31449, - [SMALL_STATE(355)] = 31507, - [SMALL_STATE(356)] = 31565, - [SMALL_STATE(357)] = 31623, - [SMALL_STATE(358)] = 31681, - [SMALL_STATE(359)] = 31739, - [SMALL_STATE(360)] = 31797, - [SMALL_STATE(361)] = 31855, - [SMALL_STATE(362)] = 31913, - [SMALL_STATE(363)] = 31971, - [SMALL_STATE(364)] = 32029, - [SMALL_STATE(365)] = 32087, - [SMALL_STATE(366)] = 32145, - [SMALL_STATE(367)] = 32203, - [SMALL_STATE(368)] = 32261, - [SMALL_STATE(369)] = 32319, - [SMALL_STATE(370)] = 32377, - [SMALL_STATE(371)] = 32435, - [SMALL_STATE(372)] = 32493, - [SMALL_STATE(373)] = 32551, - [SMALL_STATE(374)] = 32609, - [SMALL_STATE(375)] = 32667, - [SMALL_STATE(376)] = 32725, - [SMALL_STATE(377)] = 32783, - [SMALL_STATE(378)] = 32841, - [SMALL_STATE(379)] = 32899, - [SMALL_STATE(380)] = 32957, - [SMALL_STATE(381)] = 33015, - [SMALL_STATE(382)] = 33073, - [SMALL_STATE(383)] = 33141, - [SMALL_STATE(384)] = 33216, - [SMALL_STATE(385)] = 33283, - [SMALL_STATE(386)] = 33348, - [SMALL_STATE(387)] = 33421, - [SMALL_STATE(388)] = 33486, - [SMALL_STATE(389)] = 33563, - [SMALL_STATE(390)] = 33632, - [SMALL_STATE(391)] = 33690, - [SMALL_STATE(392)] = 33743, - [SMALL_STATE(393)] = 33796, - [SMALL_STATE(394)] = 33849, - [SMALL_STATE(395)] = 33902, - [SMALL_STATE(396)] = 33955, - [SMALL_STATE(397)] = 34008, - [SMALL_STATE(398)] = 34061, - [SMALL_STATE(399)] = 34114, - [SMALL_STATE(400)] = 34167, - [SMALL_STATE(401)] = 34220, - [SMALL_STATE(402)] = 34273, - [SMALL_STATE(403)] = 34326, - [SMALL_STATE(404)] = 34379, - [SMALL_STATE(405)] = 34432, - [SMALL_STATE(406)] = 34485, - [SMALL_STATE(407)] = 34538, - [SMALL_STATE(408)] = 34591, - [SMALL_STATE(409)] = 34644, - [SMALL_STATE(410)] = 34697, - [SMALL_STATE(411)] = 34750, - [SMALL_STATE(412)] = 34803, - [SMALL_STATE(413)] = 34856, - [SMALL_STATE(414)] = 34909, - [SMALL_STATE(415)] = 34962, - [SMALL_STATE(416)] = 35015, - [SMALL_STATE(417)] = 35068, - [SMALL_STATE(418)] = 35121, - [SMALL_STATE(419)] = 35174, - [SMALL_STATE(420)] = 35227, - [SMALL_STATE(421)] = 35280, - [SMALL_STATE(422)] = 35333, - [SMALL_STATE(423)] = 35386, - [SMALL_STATE(424)] = 35439, - [SMALL_STATE(425)] = 35492, - [SMALL_STATE(426)] = 35553, - [SMALL_STATE(427)] = 35614, - [SMALL_STATE(428)] = 35668, - [SMALL_STATE(429)] = 35730, - [SMALL_STATE(430)] = 35779, - [SMALL_STATE(431)] = 35828, - [SMALL_STATE(432)] = 35877, - [SMALL_STATE(433)] = 35926, - [SMALL_STATE(434)] = 35975, - [SMALL_STATE(435)] = 36024, - [SMALL_STATE(436)] = 36073, - [SMALL_STATE(437)] = 36122, - [SMALL_STATE(438)] = 36171, - [SMALL_STATE(439)] = 36220, - [SMALL_STATE(440)] = 36269, - [SMALL_STATE(441)] = 36318, - [SMALL_STATE(442)] = 36367, - [SMALL_STATE(443)] = 36416, - [SMALL_STATE(444)] = 36465, - [SMALL_STATE(445)] = 36514, - [SMALL_STATE(446)] = 36563, - [SMALL_STATE(447)] = 36612, - [SMALL_STATE(448)] = 36661, - [SMALL_STATE(449)] = 36710, - [SMALL_STATE(450)] = 36759, - [SMALL_STATE(451)] = 36808, - [SMALL_STATE(452)] = 36857, - [SMALL_STATE(453)] = 36906, - [SMALL_STATE(454)] = 36955, - [SMALL_STATE(455)] = 37004, - [SMALL_STATE(456)] = 37053, - [SMALL_STATE(457)] = 37102, - [SMALL_STATE(458)] = 37151, - [SMALL_STATE(459)] = 37200, - [SMALL_STATE(460)] = 37249, - [SMALL_STATE(461)] = 37298, - [SMALL_STATE(462)] = 37347, - [SMALL_STATE(463)] = 37396, - [SMALL_STATE(464)] = 37482, - [SMALL_STATE(465)] = 37542, - [SMALL_STATE(466)] = 37612, - [SMALL_STATE(467)] = 37684, - [SMALL_STATE(468)] = 37746, - [SMALL_STATE(469)] = 37818, - [SMALL_STATE(470)] = 37884, - [SMALL_STATE(471)] = 37965, - [SMALL_STATE(472)] = 38044, - [SMALL_STATE(473)] = 38103, - [SMALL_STATE(474)] = 38168, - [SMALL_STATE(475)] = 38231, - [SMALL_STATE(476)] = 38292, - [SMALL_STATE(477)] = 38349, - [SMALL_STATE(478)] = 38422, - [SMALL_STATE(479)] = 38481, - [SMALL_STATE(480)] = 38560, - [SMALL_STATE(481)] = 38627, - [SMALL_STATE(482)] = 38684, - [SMALL_STATE(483)] = 38754, - [SMALL_STATE(484)] = 38820, - [SMALL_STATE(485)] = 38892, - [SMALL_STATE(486)] = 38958, - [SMALL_STATE(487)] = 39008, - [SMALL_STATE(488)] = 39064, - [SMALL_STATE(489)] = 39124, - [SMALL_STATE(490)] = 39180, - [SMALL_STATE(491)] = 39248, - [SMALL_STATE(492)] = 39314, - [SMALL_STATE(493)] = 39378, - [SMALL_STATE(494)] = 39423, - [SMALL_STATE(495)] = 39468, - [SMALL_STATE(496)] = 39543, - [SMALL_STATE(497)] = 39588, - [SMALL_STATE(498)] = 39633, - [SMALL_STATE(499)] = 39678, - [SMALL_STATE(500)] = 39723, - [SMALL_STATE(501)] = 39768, - [SMALL_STATE(502)] = 39813, - [SMALL_STATE(503)] = 39858, - [SMALL_STATE(504)] = 39903, - [SMALL_STATE(505)] = 39948, - [SMALL_STATE(506)] = 39993, - [SMALL_STATE(507)] = 40038, - [SMALL_STATE(508)] = 40113, - [SMALL_STATE(509)] = 40188, - [SMALL_STATE(510)] = 40233, - [SMALL_STATE(511)] = 40278, - [SMALL_STATE(512)] = 40323, - [SMALL_STATE(513)] = 40380, - [SMALL_STATE(514)] = 40453, - [SMALL_STATE(515)] = 40498, - [SMALL_STATE(516)] = 40557, - [SMALL_STATE(517)] = 40632, - [SMALL_STATE(518)] = 40677, - [SMALL_STATE(519)] = 40752, - [SMALL_STATE(520)] = 40801, - [SMALL_STATE(521)] = 40846, - [SMALL_STATE(522)] = 40891, - [SMALL_STATE(523)] = 40960, - [SMALL_STATE(524)] = 41035, - [SMALL_STATE(525)] = 41080, - [SMALL_STATE(526)] = 41155, - [SMALL_STATE(527)] = 41200, - [SMALL_STATE(528)] = 41245, - [SMALL_STATE(529)] = 41290, - [SMALL_STATE(530)] = 41335, - [SMALL_STATE(531)] = 41380, - [SMALL_STATE(532)] = 41425, - [SMALL_STATE(533)] = 41470, - [SMALL_STATE(534)] = 41515, - [SMALL_STATE(535)] = 41560, - [SMALL_STATE(536)] = 41639, - [SMALL_STATE(537)] = 41684, - [SMALL_STATE(538)] = 41729, - [SMALL_STATE(539)] = 41774, - [SMALL_STATE(540)] = 41819, - [SMALL_STATE(541)] = 41863, - [SMALL_STATE(542)] = 41907, - [SMALL_STATE(543)] = 41951, - [SMALL_STATE(544)] = 42023, - [SMALL_STATE(545)] = 42095, - [SMALL_STATE(546)] = 42159, - [SMALL_STATE(547)] = 42203, - [SMALL_STATE(548)] = 42247, - [SMALL_STATE(549)] = 42291, - [SMALL_STATE(550)] = 42335, - [SMALL_STATE(551)] = 42379, - [SMALL_STATE(552)] = 42423, - [SMALL_STATE(553)] = 42497, - [SMALL_STATE(554)] = 42541, - [SMALL_STATE(555)] = 42607, - [SMALL_STATE(556)] = 42651, - [SMALL_STATE(557)] = 42719, - [SMALL_STATE(558)] = 42763, - [SMALL_STATE(559)] = 42807, - [SMALL_STATE(560)] = 42861, - [SMALL_STATE(561)] = 42905, - [SMALL_STATE(562)] = 42979, - [SMALL_STATE(563)] = 43045, - [SMALL_STATE(564)] = 43089, - [SMALL_STATE(565)] = 43151, - [SMALL_STATE(566)] = 43195, - [SMALL_STATE(567)] = 43239, - [SMALL_STATE(568)] = 43283, - [SMALL_STATE(569)] = 43327, - [SMALL_STATE(570)] = 43371, - [SMALL_STATE(571)] = 43435, - [SMALL_STATE(572)] = 43497, - [SMALL_STATE(573)] = 43571, - [SMALL_STATE(574)] = 43629, - [SMALL_STATE(575)] = 43701, - [SMALL_STATE(576)] = 43771, - [SMALL_STATE(577)] = 43815, - [SMALL_STATE(578)] = 43859, - [SMALL_STATE(579)] = 43903, - [SMALL_STATE(580)] = 43947, - [SMALL_STATE(581)] = 44005, - [SMALL_STATE(582)] = 44081, - [SMALL_STATE(583)] = 44125, - [SMALL_STATE(584)] = 44169, - [SMALL_STATE(585)] = 44213, - [SMALL_STATE(586)] = 44257, - [SMALL_STATE(587)] = 44301, - [SMALL_STATE(588)] = 44345, - [SMALL_STATE(589)] = 44389, - [SMALL_STATE(590)] = 44433, - [SMALL_STATE(591)] = 44477, - [SMALL_STATE(592)] = 44521, - [SMALL_STATE(593)] = 44588, - [SMALL_STATE(594)] = 44657, - [SMALL_STATE(595)] = 44728, - [SMALL_STATE(596)] = 44797, - [SMALL_STATE(597)] = 44868, - [SMALL_STATE(598)] = 44937, - [SMALL_STATE(599)] = 45008, - [SMALL_STATE(600)] = 45077, - [SMALL_STATE(601)] = 45146, - [SMALL_STATE(602)] = 45213, - [SMALL_STATE(603)] = 45282, - [SMALL_STATE(604)] = 45349, - [SMALL_STATE(605)] = 45418, - [SMALL_STATE(606)] = 45487, - [SMALL_STATE(607)] = 45556, - [SMALL_STATE(608)] = 45625, - [SMALL_STATE(609)] = 45694, - [SMALL_STATE(610)] = 45763, - [SMALL_STATE(611)] = 45832, - [SMALL_STATE(612)] = 45903, - [SMALL_STATE(613)] = 45972, - [SMALL_STATE(614)] = 46043, - [SMALL_STATE(615)] = 46112, - [SMALL_STATE(616)] = 46183, - [SMALL_STATE(617)] = 46252, - [SMALL_STATE(618)] = 46319, - [SMALL_STATE(619)] = 46388, - [SMALL_STATE(620)] = 46457, - [SMALL_STATE(621)] = 46526, - [SMALL_STATE(622)] = 46595, - [SMALL_STATE(623)] = 46664, - [SMALL_STATE(624)] = 46733, - [SMALL_STATE(625)] = 46802, - [SMALL_STATE(626)] = 46871, - [SMALL_STATE(627)] = 46940, - [SMALL_STATE(628)] = 47006, - [SMALL_STATE(629)] = 47072, - [SMALL_STATE(630)] = 47138, - [SMALL_STATE(631)] = 47204, - [SMALL_STATE(632)] = 47270, - [SMALL_STATE(633)] = 47336, - [SMALL_STATE(634)] = 47402, - [SMALL_STATE(635)] = 47468, - [SMALL_STATE(636)] = 47534, - [SMALL_STATE(637)] = 47600, - [SMALL_STATE(638)] = 47666, - [SMALL_STATE(639)] = 47732, - [SMALL_STATE(640)] = 47798, - [SMALL_STATE(641)] = 47864, - [SMALL_STATE(642)] = 47930, - [SMALL_STATE(643)] = 47996, - [SMALL_STATE(644)] = 48066, - [SMALL_STATE(645)] = 48132, - [SMALL_STATE(646)] = 48198, - [SMALL_STATE(647)] = 48264, - [SMALL_STATE(648)] = 48330, - [SMALL_STATE(649)] = 48396, - [SMALL_STATE(650)] = 48462, - [SMALL_STATE(651)] = 48530, - [SMALL_STATE(652)] = 48600, - [SMALL_STATE(653)] = 48666, - [SMALL_STATE(654)] = 48732, - [SMALL_STATE(655)] = 48798, - [SMALL_STATE(656)] = 48864, - [SMALL_STATE(657)] = 48930, - [SMALL_STATE(658)] = 48996, - [SMALL_STATE(659)] = 49064, - [SMALL_STATE(660)] = 49131, - [SMALL_STATE(661)] = 49194, - [SMALL_STATE(662)] = 49261, - [SMALL_STATE(663)] = 49328, - [SMALL_STATE(664)] = 49395, - [SMALL_STATE(665)] = 49462, - [SMALL_STATE(666)] = 49529, - [SMALL_STATE(667)] = 49598, - [SMALL_STATE(668)] = 49665, - [SMALL_STATE(669)] = 49734, - [SMALL_STATE(670)] = 49801, - [SMALL_STATE(671)] = 49868, - [SMALL_STATE(672)] = 49932, - [SMALL_STATE(673)] = 49996, - [SMALL_STATE(674)] = 50060, - [SMALL_STATE(675)] = 50124, - [SMALL_STATE(676)] = 50188, - [SMALL_STATE(677)] = 50252, - [SMALL_STATE(678)] = 50316, - [SMALL_STATE(679)] = 50380, - [SMALL_STATE(680)] = 50444, - [SMALL_STATE(681)] = 50508, - [SMALL_STATE(682)] = 50572, - [SMALL_STATE(683)] = 50636, - [SMALL_STATE(684)] = 50697, - [SMALL_STATE(685)] = 50758, - [SMALL_STATE(686)] = 50819, - [SMALL_STATE(687)] = 50880, - [SMALL_STATE(688)] = 50941, - [SMALL_STATE(689)] = 51002, - [SMALL_STATE(690)] = 51063, - [SMALL_STATE(691)] = 51124, - [SMALL_STATE(692)] = 51185, - [SMALL_STATE(693)] = 51246, - [SMALL_STATE(694)] = 51307, - [SMALL_STATE(695)] = 51368, - [SMALL_STATE(696)] = 51429, - [SMALL_STATE(697)] = 51490, - [SMALL_STATE(698)] = 51551, - [SMALL_STATE(699)] = 51612, - [SMALL_STATE(700)] = 51673, - [SMALL_STATE(701)] = 51734, - [SMALL_STATE(702)] = 51795, - [SMALL_STATE(703)] = 51856, - [SMALL_STATE(704)] = 51917, - [SMALL_STATE(705)] = 51978, - [SMALL_STATE(706)] = 52039, - [SMALL_STATE(707)] = 52100, - [SMALL_STATE(708)] = 52161, - [SMALL_STATE(709)] = 52222, - [SMALL_STATE(710)] = 52283, - [SMALL_STATE(711)] = 52344, - [SMALL_STATE(712)] = 52405, - [SMALL_STATE(713)] = 52466, - [SMALL_STATE(714)] = 52527, - [SMALL_STATE(715)] = 52588, - [SMALL_STATE(716)] = 52649, - [SMALL_STATE(717)] = 52710, - [SMALL_STATE(718)] = 52771, - [SMALL_STATE(719)] = 52832, - [SMALL_STATE(720)] = 52893, - [SMALL_STATE(721)] = 52954, - [SMALL_STATE(722)] = 53015, - [SMALL_STATE(723)] = 53076, - [SMALL_STATE(724)] = 53137, - [SMALL_STATE(725)] = 53198, - [SMALL_STATE(726)] = 53259, - [SMALL_STATE(727)] = 53320, - [SMALL_STATE(728)] = 53381, - [SMALL_STATE(729)] = 53442, - [SMALL_STATE(730)] = 53503, - [SMALL_STATE(731)] = 53564, - [SMALL_STATE(732)] = 53625, - [SMALL_STATE(733)] = 53686, - [SMALL_STATE(734)] = 53747, - [SMALL_STATE(735)] = 53808, - [SMALL_STATE(736)] = 53869, - [SMALL_STATE(737)] = 53930, - [SMALL_STATE(738)] = 53991, - [SMALL_STATE(739)] = 54052, - [SMALL_STATE(740)] = 54113, - [SMALL_STATE(741)] = 54174, - [SMALL_STATE(742)] = 54235, - [SMALL_STATE(743)] = 54296, - [SMALL_STATE(744)] = 54357, - [SMALL_STATE(745)] = 54392, - [SMALL_STATE(746)] = 54427, - [SMALL_STATE(747)] = 54462, - [SMALL_STATE(748)] = 54497, - [SMALL_STATE(749)] = 54534, - [SMALL_STATE(750)] = 54568, - [SMALL_STATE(751)] = 54601, - [SMALL_STATE(752)] = 54634, - [SMALL_STATE(753)] = 54667, - [SMALL_STATE(754)] = 54700, - [SMALL_STATE(755)] = 54732, - [SMALL_STATE(756)] = 54766, - [SMALL_STATE(757)] = 54815, - [SMALL_STATE(758)] = 54864, - [SMALL_STATE(759)] = 54913, - [SMALL_STATE(760)] = 54962, - [SMALL_STATE(761)] = 55011, - [SMALL_STATE(762)] = 55060, - [SMALL_STATE(763)] = 55109, - [SMALL_STATE(764)] = 55158, - [SMALL_STATE(765)] = 55207, - [SMALL_STATE(766)] = 55237, - [SMALL_STATE(767)] = 55267, - [SMALL_STATE(768)] = 55297, - [SMALL_STATE(769)] = 55327, - [SMALL_STATE(770)] = 55373, - [SMALL_STATE(771)] = 55405, - [SMALL_STATE(772)] = 55437, - [SMALL_STATE(773)] = 55466, - [SMALL_STATE(774)] = 55497, - [SMALL_STATE(775)] = 55528, - [SMALL_STATE(776)] = 55556, - [SMALL_STATE(777)] = 55584, - [SMALL_STATE(778)] = 55618, - [SMALL_STATE(779)] = 55645, - [SMALL_STATE(780)] = 55688, - [SMALL_STATE(781)] = 55731, - [SMALL_STATE(782)] = 55758, - [SMALL_STATE(783)] = 55799, - [SMALL_STATE(784)] = 55826, - [SMALL_STATE(785)] = 55857, - [SMALL_STATE(786)] = 55898, - [SMALL_STATE(787)] = 55929, - [SMALL_STATE(788)] = 55955, - [SMALL_STATE(789)] = 55981, - [SMALL_STATE(790)] = 56007, - [SMALL_STATE(791)] = 56033, - [SMALL_STATE(792)] = 56059, - [SMALL_STATE(793)] = 56085, - [SMALL_STATE(794)] = 56113, - [SMALL_STATE(795)] = 56138, - [SMALL_STATE(796)] = 56163, - [SMALL_STATE(797)] = 56188, - [SMALL_STATE(798)] = 56213, - [SMALL_STATE(799)] = 56238, - [SMALL_STATE(800)] = 56269, - [SMALL_STATE(801)] = 56294, - [SMALL_STATE(802)] = 56319, - [SMALL_STATE(803)] = 56344, - [SMALL_STATE(804)] = 56369, - [SMALL_STATE(805)] = 56394, - [SMALL_STATE(806)] = 56419, - [SMALL_STATE(807)] = 56444, - [SMALL_STATE(808)] = 56469, - [SMALL_STATE(809)] = 56494, - [SMALL_STATE(810)] = 56517, - [SMALL_STATE(811)] = 56542, - [SMALL_STATE(812)] = 56567, - [SMALL_STATE(813)] = 56592, - [SMALL_STATE(814)] = 56617, - [SMALL_STATE(815)] = 56642, - [SMALL_STATE(816)] = 56667, - [SMALL_STATE(817)] = 56699, - [SMALL_STATE(818)] = 56721, - [SMALL_STATE(819)] = 56743, - [SMALL_STATE(820)] = 56765, - [SMALL_STATE(821)] = 56787, - [SMALL_STATE(822)] = 56809, - [SMALL_STATE(823)] = 56831, - [SMALL_STATE(824)] = 56853, - [SMALL_STATE(825)] = 56875, - [SMALL_STATE(826)] = 56897, - [SMALL_STATE(827)] = 56919, - [SMALL_STATE(828)] = 56941, - [SMALL_STATE(829)] = 56963, - [SMALL_STATE(830)] = 56985, - [SMALL_STATE(831)] = 57011, - [SMALL_STATE(832)] = 57033, - [SMALL_STATE(833)] = 57055, - [SMALL_STATE(834)] = 57077, - [SMALL_STATE(835)] = 57109, - [SMALL_STATE(836)] = 57137, - [SMALL_STATE(837)] = 57159, - [SMALL_STATE(838)] = 57181, - [SMALL_STATE(839)] = 57203, - [SMALL_STATE(840)] = 57225, - [SMALL_STATE(841)] = 57247, - [SMALL_STATE(842)] = 57269, - [SMALL_STATE(843)] = 57291, - [SMALL_STATE(844)] = 57313, - [SMALL_STATE(845)] = 57335, - [SMALL_STATE(846)] = 57362, - [SMALL_STATE(847)] = 57391, - [SMALL_STATE(848)] = 57416, - [SMALL_STATE(849)] = 57445, - [SMALL_STATE(850)] = 57470, - [SMALL_STATE(851)] = 57499, - [SMALL_STATE(852)] = 57526, - [SMALL_STATE(853)] = 57551, - [SMALL_STATE(854)] = 57574, - [SMALL_STATE(855)] = 57599, - [SMALL_STATE(856)] = 57628, - [SMALL_STATE(857)] = 57657, - [SMALL_STATE(858)] = 57686, - [SMALL_STATE(859)] = 57713, - [SMALL_STATE(860)] = 57742, - [SMALL_STATE(861)] = 57771, - [SMALL_STATE(862)] = 57800, - [SMALL_STATE(863)] = 57829, - [SMALL_STATE(864)] = 57856, - [SMALL_STATE(865)] = 57885, - [SMALL_STATE(866)] = 57910, - [SMALL_STATE(867)] = 57939, - [SMALL_STATE(868)] = 57968, - [SMALL_STATE(869)] = 57999, - [SMALL_STATE(870)] = 58028, - [SMALL_STATE(871)] = 58057, - [SMALL_STATE(872)] = 58082, - [SMALL_STATE(873)] = 58109, - [SMALL_STATE(874)] = 58134, - [SMALL_STATE(875)] = 58159, - [SMALL_STATE(876)] = 58186, - [SMALL_STATE(877)] = 58211, - [SMALL_STATE(878)] = 58236, - [SMALL_STATE(879)] = 58265, - [SMALL_STATE(880)] = 58294, - [SMALL_STATE(881)] = 58318, - [SMALL_STATE(882)] = 58340, - [SMALL_STATE(883)] = 58362, - [SMALL_STATE(884)] = 58390, - [SMALL_STATE(885)] = 58412, - [SMALL_STATE(886)] = 58434, - [SMALL_STATE(887)] = 58456, - [SMALL_STATE(888)] = 58478, - [SMALL_STATE(889)] = 58500, - [SMALL_STATE(890)] = 58522, - [SMALL_STATE(891)] = 58544, - [SMALL_STATE(892)] = 58566, - [SMALL_STATE(893)] = 58588, - [SMALL_STATE(894)] = 58610, - [SMALL_STATE(895)] = 58632, - [SMALL_STATE(896)] = 58660, - [SMALL_STATE(897)] = 58682, - [SMALL_STATE(898)] = 58704, - [SMALL_STATE(899)] = 58726, - [SMALL_STATE(900)] = 58754, - [SMALL_STATE(901)] = 58780, - [SMALL_STATE(902)] = 58806, - [SMALL_STATE(903)] = 58828, - [SMALL_STATE(904)] = 58850, - [SMALL_STATE(905)] = 58872, - [SMALL_STATE(906)] = 58894, - [SMALL_STATE(907)] = 58922, - [SMALL_STATE(908)] = 58944, - [SMALL_STATE(909)] = 58966, - [SMALL_STATE(910)] = 58988, - [SMALL_STATE(911)] = 59010, - [SMALL_STATE(912)] = 59038, - [SMALL_STATE(913)] = 59060, - [SMALL_STATE(914)] = 59088, - [SMALL_STATE(915)] = 59110, - [SMALL_STATE(916)] = 59136, - [SMALL_STATE(917)] = 59162, - [SMALL_STATE(918)] = 59184, - [SMALL_STATE(919)] = 59210, - [SMALL_STATE(920)] = 59236, - [SMALL_STATE(921)] = 59262, - [SMALL_STATE(922)] = 59284, - [SMALL_STATE(923)] = 59306, - [SMALL_STATE(924)] = 59328, - [SMALL_STATE(925)] = 59350, - [SMALL_STATE(926)] = 59378, - [SMALL_STATE(927)] = 59400, - [SMALL_STATE(928)] = 59428, - [SMALL_STATE(929)] = 59450, - [SMALL_STATE(930)] = 59472, - [SMALL_STATE(931)] = 59500, - [SMALL_STATE(932)] = 59528, - [SMALL_STATE(933)] = 59550, - [SMALL_STATE(934)] = 59572, - [SMALL_STATE(935)] = 59600, - [SMALL_STATE(936)] = 59622, - [SMALL_STATE(937)] = 59644, - [SMALL_STATE(938)] = 59666, - [SMALL_STATE(939)] = 59688, - [SMALL_STATE(940)] = 59710, - [SMALL_STATE(941)] = 59732, - [SMALL_STATE(942)] = 59754, - [SMALL_STATE(943)] = 59776, - [SMALL_STATE(944)] = 59798, - [SMALL_STATE(945)] = 59820, - [SMALL_STATE(946)] = 59848, - [SMALL_STATE(947)] = 59876, - [SMALL_STATE(948)] = 59898, - [SMALL_STATE(949)] = 59926, - [SMALL_STATE(950)] = 59948, - [SMALL_STATE(951)] = 59972, - [SMALL_STATE(952)] = 59996, - [SMALL_STATE(953)] = 60018, - [SMALL_STATE(954)] = 60040, - [SMALL_STATE(955)] = 60062, - [SMALL_STATE(956)] = 60081, - [SMALL_STATE(957)] = 60104, - [SMALL_STATE(958)] = 60129, - [SMALL_STATE(959)] = 60154, - [SMALL_STATE(960)] = 60177, - [SMALL_STATE(961)] = 60202, - [SMALL_STATE(962)] = 60225, - [SMALL_STATE(963)] = 60250, - [SMALL_STATE(964)] = 60275, - [SMALL_STATE(965)] = 60300, - [SMALL_STATE(966)] = 60323, - [SMALL_STATE(967)] = 60344, - [SMALL_STATE(968)] = 60367, - [SMALL_STATE(969)] = 60390, - [SMALL_STATE(970)] = 60411, - [SMALL_STATE(971)] = 60434, - [SMALL_STATE(972)] = 60457, - [SMALL_STATE(973)] = 60482, - [SMALL_STATE(974)] = 60503, - [SMALL_STATE(975)] = 60528, - [SMALL_STATE(976)] = 60553, - [SMALL_STATE(977)] = 60576, - [SMALL_STATE(978)] = 60599, - [SMALL_STATE(979)] = 60624, - [SMALL_STATE(980)] = 60649, - [SMALL_STATE(981)] = 60672, - [SMALL_STATE(982)] = 60697, - [SMALL_STATE(983)] = 60722, - [SMALL_STATE(984)] = 60747, - [SMALL_STATE(985)] = 60772, - [SMALL_STATE(986)] = 60797, - [SMALL_STATE(987)] = 60820, - [SMALL_STATE(988)] = 60841, - [SMALL_STATE(989)] = 60862, - [SMALL_STATE(990)] = 60885, - [SMALL_STATE(991)] = 60910, - [SMALL_STATE(992)] = 60931, - [SMALL_STATE(993)] = 60956, - [SMALL_STATE(994)] = 60981, - [SMALL_STATE(995)] = 61006, - [SMALL_STATE(996)] = 61031, - [SMALL_STATE(997)] = 61056, - [SMALL_STATE(998)] = 61077, - [SMALL_STATE(999)] = 61100, - [SMALL_STATE(1000)] = 61123, - [SMALL_STATE(1001)] = 61148, - [SMALL_STATE(1002)] = 61171, - [SMALL_STATE(1003)] = 61194, - [SMALL_STATE(1004)] = 61219, - [SMALL_STATE(1005)] = 61242, - [SMALL_STATE(1006)] = 61265, - [SMALL_STATE(1007)] = 61288, - [SMALL_STATE(1008)] = 61309, - [SMALL_STATE(1009)] = 61334, - [SMALL_STATE(1010)] = 61357, - [SMALL_STATE(1011)] = 61375, - [SMALL_STATE(1012)] = 61397, - [SMALL_STATE(1013)] = 61419, - [SMALL_STATE(1014)] = 61441, - [SMALL_STATE(1015)] = 61463, - [SMALL_STATE(1016)] = 61485, - [SMALL_STATE(1017)] = 61507, - [SMALL_STATE(1018)] = 61525, - [SMALL_STATE(1019)] = 61547, - [SMALL_STATE(1020)] = 61569, - [SMALL_STATE(1021)] = 61591, - [SMALL_STATE(1022)] = 61611, - [SMALL_STATE(1023)] = 61633, - [SMALL_STATE(1024)] = 61655, - [SMALL_STATE(1025)] = 61673, - [SMALL_STATE(1026)] = 61693, - [SMALL_STATE(1027)] = 61711, - [SMALL_STATE(1028)] = 61731, - [SMALL_STATE(1029)] = 61749, - [SMALL_STATE(1030)] = 61771, - [SMALL_STATE(1031)] = 61793, - [SMALL_STATE(1032)] = 61815, - [SMALL_STATE(1033)] = 61835, - [SMALL_STATE(1034)] = 61855, - [SMALL_STATE(1035)] = 61877, - [SMALL_STATE(1036)] = 61897, - [SMALL_STATE(1037)] = 61919, - [SMALL_STATE(1038)] = 61941, - [SMALL_STATE(1039)] = 61963, - [SMALL_STATE(1040)] = 61985, - [SMALL_STATE(1041)] = 62007, - [SMALL_STATE(1042)] = 62029, - [SMALL_STATE(1043)] = 62049, - [SMALL_STATE(1044)] = 62071, - [SMALL_STATE(1045)] = 62093, - [SMALL_STATE(1046)] = 62115, - [SMALL_STATE(1047)] = 62137, - [SMALL_STATE(1048)] = 62157, - [SMALL_STATE(1049)] = 62177, - [SMALL_STATE(1050)] = 62199, - [SMALL_STATE(1051)] = 62219, - [SMALL_STATE(1052)] = 62239, - [SMALL_STATE(1053)] = 62261, - [SMALL_STATE(1054)] = 62279, - [SMALL_STATE(1055)] = 62299, - [SMALL_STATE(1056)] = 62319, - [SMALL_STATE(1057)] = 62341, - [SMALL_STATE(1058)] = 62361, - [SMALL_STATE(1059)] = 62383, - [SMALL_STATE(1060)] = 62405, - [SMALL_STATE(1061)] = 62423, - [SMALL_STATE(1062)] = 62445, - [SMALL_STATE(1063)] = 62467, - [SMALL_STATE(1064)] = 62487, - [SMALL_STATE(1065)] = 62509, - [SMALL_STATE(1066)] = 62527, - [SMALL_STATE(1067)] = 62549, - [SMALL_STATE(1068)] = 62569, - [SMALL_STATE(1069)] = 62589, - [SMALL_STATE(1070)] = 62611, - [SMALL_STATE(1071)] = 62633, - [SMALL_STATE(1072)] = 62653, - [SMALL_STATE(1073)] = 62673, - [SMALL_STATE(1074)] = 62691, - [SMALL_STATE(1075)] = 62713, - [SMALL_STATE(1076)] = 62735, - [SMALL_STATE(1077)] = 62757, - [SMALL_STATE(1078)] = 62779, - [SMALL_STATE(1079)] = 62801, - [SMALL_STATE(1080)] = 62819, - [SMALL_STATE(1081)] = 62841, - [SMALL_STATE(1082)] = 62863, - [SMALL_STATE(1083)] = 62885, - [SMALL_STATE(1084)] = 62905, - [SMALL_STATE(1085)] = 62923, - [SMALL_STATE(1086)] = 62945, - [SMALL_STATE(1087)] = 62967, - [SMALL_STATE(1088)] = 62989, - [SMALL_STATE(1089)] = 63009, - [SMALL_STATE(1090)] = 63031, - [SMALL_STATE(1091)] = 63053, - [SMALL_STATE(1092)] = 63071, - [SMALL_STATE(1093)] = 63089, - [SMALL_STATE(1094)] = 63111, - [SMALL_STATE(1095)] = 63133, - [SMALL_STATE(1096)] = 63151, - [SMALL_STATE(1097)] = 63171, - [SMALL_STATE(1098)] = 63193, - [SMALL_STATE(1099)] = 63211, - [SMALL_STATE(1100)] = 63233, - [SMALL_STATE(1101)] = 63253, - [SMALL_STATE(1102)] = 63275, - [SMALL_STATE(1103)] = 63297, - [SMALL_STATE(1104)] = 63319, - [SMALL_STATE(1105)] = 63341, - [SMALL_STATE(1106)] = 63363, - [SMALL_STATE(1107)] = 63385, - [SMALL_STATE(1108)] = 63403, - [SMALL_STATE(1109)] = 63425, - [SMALL_STATE(1110)] = 63447, - [SMALL_STATE(1111)] = 63469, - [SMALL_STATE(1112)] = 63491, - [SMALL_STATE(1113)] = 63513, - [SMALL_STATE(1114)] = 63535, - [SMALL_STATE(1115)] = 63557, - [SMALL_STATE(1116)] = 63579, - [SMALL_STATE(1117)] = 63601, - [SMALL_STATE(1118)] = 63623, - [SMALL_STATE(1119)] = 63641, - [SMALL_STATE(1120)] = 63663, - [SMALL_STATE(1121)] = 63685, - [SMALL_STATE(1122)] = 63707, - [SMALL_STATE(1123)] = 63724, - [SMALL_STATE(1124)] = 63741, - [SMALL_STATE(1125)] = 63760, - [SMALL_STATE(1126)] = 63779, - [SMALL_STATE(1127)] = 63796, - [SMALL_STATE(1128)] = 63815, - [SMALL_STATE(1129)] = 63832, - [SMALL_STATE(1130)] = 63849, - [SMALL_STATE(1131)] = 63868, - [SMALL_STATE(1132)] = 63887, - [SMALL_STATE(1133)] = 63906, - [SMALL_STATE(1134)] = 63925, - [SMALL_STATE(1135)] = 63944, - [SMALL_STATE(1136)] = 63963, - [SMALL_STATE(1137)] = 63980, - [SMALL_STATE(1138)] = 63999, - [SMALL_STATE(1139)] = 64016, - [SMALL_STATE(1140)] = 64035, - [SMALL_STATE(1141)] = 64054, - [SMALL_STATE(1142)] = 64073, - [SMALL_STATE(1143)] = 64092, - [SMALL_STATE(1144)] = 64109, - [SMALL_STATE(1145)] = 64126, - [SMALL_STATE(1146)] = 64145, - [SMALL_STATE(1147)] = 64164, - [SMALL_STATE(1148)] = 64183, - [SMALL_STATE(1149)] = 64200, - [SMALL_STATE(1150)] = 64219, - [SMALL_STATE(1151)] = 64236, - [SMALL_STATE(1152)] = 64255, - [SMALL_STATE(1153)] = 64274, - [SMALL_STATE(1154)] = 64293, - [SMALL_STATE(1155)] = 64312, - [SMALL_STATE(1156)] = 64331, - [SMALL_STATE(1157)] = 64350, - [SMALL_STATE(1158)] = 64369, - [SMALL_STATE(1159)] = 64386, - [SMALL_STATE(1160)] = 64405, - [SMALL_STATE(1161)] = 64424, - [SMALL_STATE(1162)] = 64443, - [SMALL_STATE(1163)] = 64460, - [SMALL_STATE(1164)] = 64479, - [SMALL_STATE(1165)] = 64496, - [SMALL_STATE(1166)] = 64515, - [SMALL_STATE(1167)] = 64534, - [SMALL_STATE(1168)] = 64553, - [SMALL_STATE(1169)] = 64572, - [SMALL_STATE(1170)] = 64589, - [SMALL_STATE(1171)] = 64608, - [SMALL_STATE(1172)] = 64627, - [SMALL_STATE(1173)] = 64644, - [SMALL_STATE(1174)] = 64663, - [SMALL_STATE(1175)] = 64682, - [SMALL_STATE(1176)] = 64701, - [SMALL_STATE(1177)] = 64720, - [SMALL_STATE(1178)] = 64739, - [SMALL_STATE(1179)] = 64758, - [SMALL_STATE(1180)] = 64777, - [SMALL_STATE(1181)] = 64796, - [SMALL_STATE(1182)] = 64815, - [SMALL_STATE(1183)] = 64834, - [SMALL_STATE(1184)] = 64853, - [SMALL_STATE(1185)] = 64872, - [SMALL_STATE(1186)] = 64889, - [SMALL_STATE(1187)] = 64908, - [SMALL_STATE(1188)] = 64925, - [SMALL_STATE(1189)] = 64941, - [SMALL_STATE(1190)] = 64957, - [SMALL_STATE(1191)] = 64973, - [SMALL_STATE(1192)] = 64989, - [SMALL_STATE(1193)] = 65005, - [SMALL_STATE(1194)] = 65021, - [SMALL_STATE(1195)] = 65037, - [SMALL_STATE(1196)] = 65053, - [SMALL_STATE(1197)] = 65069, - [SMALL_STATE(1198)] = 65085, - [SMALL_STATE(1199)] = 65101, - [SMALL_STATE(1200)] = 65117, - [SMALL_STATE(1201)] = 65133, - [SMALL_STATE(1202)] = 65149, - [SMALL_STATE(1203)] = 65165, - [SMALL_STATE(1204)] = 65181, - [SMALL_STATE(1205)] = 65197, - [SMALL_STATE(1206)] = 65213, - [SMALL_STATE(1207)] = 65229, - [SMALL_STATE(1208)] = 65245, - [SMALL_STATE(1209)] = 65261, - [SMALL_STATE(1210)] = 65277, - [SMALL_STATE(1211)] = 65293, - [SMALL_STATE(1212)] = 65309, - [SMALL_STATE(1213)] = 65325, - [SMALL_STATE(1214)] = 65341, - [SMALL_STATE(1215)] = 65357, - [SMALL_STATE(1216)] = 65373, - [SMALL_STATE(1217)] = 65389, - [SMALL_STATE(1218)] = 65405, - [SMALL_STATE(1219)] = 65421, - [SMALL_STATE(1220)] = 65437, - [SMALL_STATE(1221)] = 65453, - [SMALL_STATE(1222)] = 65469, - [SMALL_STATE(1223)] = 65485, - [SMALL_STATE(1224)] = 65501, - [SMALL_STATE(1225)] = 65517, - [SMALL_STATE(1226)] = 65533, - [SMALL_STATE(1227)] = 65549, - [SMALL_STATE(1228)] = 65565, - [SMALL_STATE(1229)] = 65581, - [SMALL_STATE(1230)] = 65597, - [SMALL_STATE(1231)] = 65613, - [SMALL_STATE(1232)] = 65629, - [SMALL_STATE(1233)] = 65645, - [SMALL_STATE(1234)] = 65661, - [SMALL_STATE(1235)] = 65677, - [SMALL_STATE(1236)] = 65693, - [SMALL_STATE(1237)] = 65709, - [SMALL_STATE(1238)] = 65725, - [SMALL_STATE(1239)] = 65741, - [SMALL_STATE(1240)] = 65757, - [SMALL_STATE(1241)] = 65773, - [SMALL_STATE(1242)] = 65789, - [SMALL_STATE(1243)] = 65805, - [SMALL_STATE(1244)] = 65821, - [SMALL_STATE(1245)] = 65837, - [SMALL_STATE(1246)] = 65853, - [SMALL_STATE(1247)] = 65869, - [SMALL_STATE(1248)] = 65885, - [SMALL_STATE(1249)] = 65901, - [SMALL_STATE(1250)] = 65917, - [SMALL_STATE(1251)] = 65933, - [SMALL_STATE(1252)] = 65949, - [SMALL_STATE(1253)] = 65965, - [SMALL_STATE(1254)] = 65981, - [SMALL_STATE(1255)] = 65997, - [SMALL_STATE(1256)] = 66013, - [SMALL_STATE(1257)] = 66029, - [SMALL_STATE(1258)] = 66045, - [SMALL_STATE(1259)] = 66061, - [SMALL_STATE(1260)] = 66077, - [SMALL_STATE(1261)] = 66093, - [SMALL_STATE(1262)] = 66109, - [SMALL_STATE(1263)] = 66125, - [SMALL_STATE(1264)] = 66141, - [SMALL_STATE(1265)] = 66157, - [SMALL_STATE(1266)] = 66173, - [SMALL_STATE(1267)] = 66189, - [SMALL_STATE(1268)] = 66205, - [SMALL_STATE(1269)] = 66221, - [SMALL_STATE(1270)] = 66237, - [SMALL_STATE(1271)] = 66253, - [SMALL_STATE(1272)] = 66269, - [SMALL_STATE(1273)] = 66285, - [SMALL_STATE(1274)] = 66301, - [SMALL_STATE(1275)] = 66317, - [SMALL_STATE(1276)] = 66333, - [SMALL_STATE(1277)] = 66349, - [SMALL_STATE(1278)] = 66365, - [SMALL_STATE(1279)] = 66381, - [SMALL_STATE(1280)] = 66397, - [SMALL_STATE(1281)] = 66413, - [SMALL_STATE(1282)] = 66417, + [SMALL_STATE(22)] = 0, + [SMALL_STATE(23)] = 120, + [SMALL_STATE(24)] = 237, + [SMALL_STATE(25)] = 354, + [SMALL_STATE(26)] = 471, + [SMALL_STATE(27)] = 588, + [SMALL_STATE(28)] = 686, + [SMALL_STATE(29)] = 784, + [SMALL_STATE(30)] = 898, + [SMALL_STATE(31)] = 996, + [SMALL_STATE(32)] = 1115, + [SMALL_STATE(33)] = 1234, + [SMALL_STATE(34)] = 1353, + [SMALL_STATE(35)] = 1472, + [SMALL_STATE(36)] = 1591, + [SMALL_STATE(37)] = 1710, + [SMALL_STATE(38)] = 1821, + [SMALL_STATE(39)] = 1914, + [SMALL_STATE(40)] = 2030, + [SMALL_STATE(41)] = 2146, + [SMALL_STATE(42)] = 2262, + [SMALL_STATE(43)] = 2378, + [SMALL_STATE(44)] = 2494, + [SMALL_STATE(45)] = 2610, + [SMALL_STATE(46)] = 2726, + [SMALL_STATE(47)] = 2842, + [SMALL_STATE(48)] = 2958, + [SMALL_STATE(49)] = 3074, + [SMALL_STATE(50)] = 3190, + [SMALL_STATE(51)] = 3306, + [SMALL_STATE(52)] = 3419, + [SMALL_STATE(53)] = 3529, + [SMALL_STATE(54)] = 3637, + [SMALL_STATE(55)] = 3744, + [SMALL_STATE(56)] = 3851, + [SMALL_STATE(57)] = 3958, + [SMALL_STATE(58)] = 4065, + [SMALL_STATE(59)] = 4172, + [SMALL_STATE(60)] = 4279, + [SMALL_STATE(61)] = 4386, + [SMALL_STATE(62)] = 4493, + [SMALL_STATE(63)] = 4600, + [SMALL_STATE(64)] = 4707, + [SMALL_STATE(65)] = 4814, + [SMALL_STATE(66)] = 4921, + [SMALL_STATE(67)] = 5028, + [SMALL_STATE(68)] = 5135, + [SMALL_STATE(69)] = 5242, + [SMALL_STATE(70)] = 5349, + [SMALL_STATE(71)] = 5456, + [SMALL_STATE(72)] = 5563, + [SMALL_STATE(73)] = 5670, + [SMALL_STATE(74)] = 5777, + [SMALL_STATE(75)] = 5884, + [SMALL_STATE(76)] = 5991, + [SMALL_STATE(77)] = 6098, + [SMALL_STATE(78)] = 6202, + [SMALL_STATE(79)] = 6306, + [SMALL_STATE(80)] = 6410, + [SMALL_STATE(81)] = 6514, + [SMALL_STATE(82)] = 6618, + [SMALL_STATE(83)] = 6722, + [SMALL_STATE(84)] = 6826, + [SMALL_STATE(85)] = 6930, + [SMALL_STATE(86)] = 7034, + [SMALL_STATE(87)] = 7138, + [SMALL_STATE(88)] = 7242, + [SMALL_STATE(89)] = 7346, + [SMALL_STATE(90)] = 7450, + [SMALL_STATE(91)] = 7554, + [SMALL_STATE(92)] = 7658, + [SMALL_STATE(93)] = 7762, + [SMALL_STATE(94)] = 7866, + [SMALL_STATE(95)] = 7970, + [SMALL_STATE(96)] = 8074, + [SMALL_STATE(97)] = 8178, + [SMALL_STATE(98)] = 8282, + [SMALL_STATE(99)] = 8386, + [SMALL_STATE(100)] = 8490, + [SMALL_STATE(101)] = 8594, + [SMALL_STATE(102)] = 8698, + [SMALL_STATE(103)] = 8802, + [SMALL_STATE(104)] = 8906, + [SMALL_STATE(105)] = 9010, + [SMALL_STATE(106)] = 9114, + [SMALL_STATE(107)] = 9218, + [SMALL_STATE(108)] = 9322, + [SMALL_STATE(109)] = 9426, + [SMALL_STATE(110)] = 9530, + [SMALL_STATE(111)] = 9634, + [SMALL_STATE(112)] = 9738, + [SMALL_STATE(113)] = 9842, + [SMALL_STATE(114)] = 9946, + [SMALL_STATE(115)] = 10050, + [SMALL_STATE(116)] = 10154, + [SMALL_STATE(117)] = 10258, + [SMALL_STATE(118)] = 10362, + [SMALL_STATE(119)] = 10466, + [SMALL_STATE(120)] = 10570, + [SMALL_STATE(121)] = 10674, + [SMALL_STATE(122)] = 10778, + [SMALL_STATE(123)] = 10882, + [SMALL_STATE(124)] = 10986, + [SMALL_STATE(125)] = 11090, + [SMALL_STATE(126)] = 11194, + [SMALL_STATE(127)] = 11298, + [SMALL_STATE(128)] = 11402, + [SMALL_STATE(129)] = 11506, + [SMALL_STATE(130)] = 11610, + [SMALL_STATE(131)] = 11714, + [SMALL_STATE(132)] = 11815, + [SMALL_STATE(133)] = 11916, + [SMALL_STATE(134)] = 12017, + [SMALL_STATE(135)] = 12118, + [SMALL_STATE(136)] = 12219, + [SMALL_STATE(137)] = 12320, + [SMALL_STATE(138)] = 12421, + [SMALL_STATE(139)] = 12522, + [SMALL_STATE(140)] = 12623, + [SMALL_STATE(141)] = 12724, + [SMALL_STATE(142)] = 12825, + [SMALL_STATE(143)] = 12926, + [SMALL_STATE(144)] = 13027, + [SMALL_STATE(145)] = 13128, + [SMALL_STATE(146)] = 13229, + [SMALL_STATE(147)] = 13330, + [SMALL_STATE(148)] = 13431, + [SMALL_STATE(149)] = 13532, + [SMALL_STATE(150)] = 13633, + [SMALL_STATE(151)] = 13734, + [SMALL_STATE(152)] = 13835, + [SMALL_STATE(153)] = 13936, + [SMALL_STATE(154)] = 14037, + [SMALL_STATE(155)] = 14138, + [SMALL_STATE(156)] = 14239, + [SMALL_STATE(157)] = 14340, + [SMALL_STATE(158)] = 14441, + [SMALL_STATE(159)] = 14542, + [SMALL_STATE(160)] = 14643, + [SMALL_STATE(161)] = 14744, + [SMALL_STATE(162)] = 14845, + [SMALL_STATE(163)] = 14946, + [SMALL_STATE(164)] = 15047, + [SMALL_STATE(165)] = 15148, + [SMALL_STATE(166)] = 15249, + [SMALL_STATE(167)] = 15350, + [SMALL_STATE(168)] = 15451, + [SMALL_STATE(169)] = 15552, + [SMALL_STATE(170)] = 15653, + [SMALL_STATE(171)] = 15754, + [SMALL_STATE(172)] = 15855, + [SMALL_STATE(173)] = 15956, + [SMALL_STATE(174)] = 16057, + [SMALL_STATE(175)] = 16158, + [SMALL_STATE(176)] = 16259, + [SMALL_STATE(177)] = 16360, + [SMALL_STATE(178)] = 16461, + [SMALL_STATE(179)] = 16562, + [SMALL_STATE(180)] = 16663, + [SMALL_STATE(181)] = 16764, + [SMALL_STATE(182)] = 16865, + [SMALL_STATE(183)] = 16966, + [SMALL_STATE(184)] = 17067, + [SMALL_STATE(185)] = 17168, + [SMALL_STATE(186)] = 17269, + [SMALL_STATE(187)] = 17370, + [SMALL_STATE(188)] = 17471, + [SMALL_STATE(189)] = 17572, + [SMALL_STATE(190)] = 17673, + [SMALL_STATE(191)] = 17774, + [SMALL_STATE(192)] = 17875, + [SMALL_STATE(193)] = 17976, + [SMALL_STATE(194)] = 18077, + [SMALL_STATE(195)] = 18178, + [SMALL_STATE(196)] = 18279, + [SMALL_STATE(197)] = 18380, + [SMALL_STATE(198)] = 18481, + [SMALL_STATE(199)] = 18582, + [SMALL_STATE(200)] = 18683, + [SMALL_STATE(201)] = 18784, + [SMALL_STATE(202)] = 18885, + [SMALL_STATE(203)] = 18986, + [SMALL_STATE(204)] = 19087, + [SMALL_STATE(205)] = 19188, + [SMALL_STATE(206)] = 19289, + [SMALL_STATE(207)] = 19390, + [SMALL_STATE(208)] = 19491, + [SMALL_STATE(209)] = 19592, + [SMALL_STATE(210)] = 19693, + [SMALL_STATE(211)] = 19794, + [SMALL_STATE(212)] = 19895, + [SMALL_STATE(213)] = 19996, + [SMALL_STATE(214)] = 20097, + [SMALL_STATE(215)] = 20198, + [SMALL_STATE(216)] = 20299, + [SMALL_STATE(217)] = 20400, + [SMALL_STATE(218)] = 20501, + [SMALL_STATE(219)] = 20602, + [SMALL_STATE(220)] = 20703, + [SMALL_STATE(221)] = 20804, + [SMALL_STATE(222)] = 20905, + [SMALL_STATE(223)] = 21006, + [SMALL_STATE(224)] = 21107, + [SMALL_STATE(225)] = 21208, + [SMALL_STATE(226)] = 21309, + [SMALL_STATE(227)] = 21410, + [SMALL_STATE(228)] = 21511, + [SMALL_STATE(229)] = 21612, + [SMALL_STATE(230)] = 21713, + [SMALL_STATE(231)] = 21814, + [SMALL_STATE(232)] = 21915, + [SMALL_STATE(233)] = 22016, + [SMALL_STATE(234)] = 22117, + [SMALL_STATE(235)] = 22218, + [SMALL_STATE(236)] = 22319, + [SMALL_STATE(237)] = 22382, + [SMALL_STATE(238)] = 22452, + [SMALL_STATE(239)] = 22522, + [SMALL_STATE(240)] = 22582, + [SMALL_STATE(241)] = 22642, + [SMALL_STATE(242)] = 22702, + [SMALL_STATE(243)] = 22762, + [SMALL_STATE(244)] = 22817, + [SMALL_STATE(245)] = 22872, + [SMALL_STATE(246)] = 22927, + [SMALL_STATE(247)] = 22982, + [SMALL_STATE(248)] = 23041, + [SMALL_STATE(249)] = 23096, + [SMALL_STATE(250)] = 23151, + [SMALL_STATE(251)] = 23206, + [SMALL_STATE(252)] = 23261, + [SMALL_STATE(253)] = 23316, + [SMALL_STATE(254)] = 23371, + [SMALL_STATE(255)] = 23426, + [SMALL_STATE(256)] = 23481, + [SMALL_STATE(257)] = 23536, + [SMALL_STATE(258)] = 23591, + [SMALL_STATE(259)] = 23646, + [SMALL_STATE(260)] = 23701, + [SMALL_STATE(261)] = 23756, + [SMALL_STATE(262)] = 23811, + [SMALL_STATE(263)] = 23866, + [SMALL_STATE(264)] = 23921, + [SMALL_STATE(265)] = 23976, + [SMALL_STATE(266)] = 24043, + [SMALL_STATE(267)] = 24098, + [SMALL_STATE(268)] = 24153, + [SMALL_STATE(269)] = 24208, + [SMALL_STATE(270)] = 24263, + [SMALL_STATE(271)] = 24318, + [SMALL_STATE(272)] = 24373, + [SMALL_STATE(273)] = 24428, + [SMALL_STATE(274)] = 24483, + [SMALL_STATE(275)] = 24538, + [SMALL_STATE(276)] = 24593, + [SMALL_STATE(277)] = 24648, + [SMALL_STATE(278)] = 24703, + [SMALL_STATE(279)] = 24758, + [SMALL_STATE(280)] = 24813, + [SMALL_STATE(281)] = 24868, + [SMALL_STATE(282)] = 24923, + [SMALL_STATE(283)] = 24978, + [SMALL_STATE(284)] = 25065, + [SMALL_STATE(285)] = 25120, + [SMALL_STATE(286)] = 25175, + [SMALL_STATE(287)] = 25230, + [SMALL_STATE(288)] = 25325, + [SMALL_STATE(289)] = 25380, + [SMALL_STATE(290)] = 25435, + [SMALL_STATE(291)] = 25490, + [SMALL_STATE(292)] = 25545, + [SMALL_STATE(293)] = 25600, + [SMALL_STATE(294)] = 25655, + [SMALL_STATE(295)] = 25719, + [SMALL_STATE(296)] = 25791, + [SMALL_STATE(297)] = 25861, + [SMALL_STATE(298)] = 25929, + [SMALL_STATE(299)] = 25995, + [SMALL_STATE(300)] = 26049, + [SMALL_STATE(301)] = 26113, + [SMALL_STATE(302)] = 26166, + [SMALL_STATE(303)] = 26257, + [SMALL_STATE(304)] = 26314, + [SMALL_STATE(305)] = 26367, + [SMALL_STATE(306)] = 26458, + [SMALL_STATE(307)] = 26510, + [SMALL_STATE(308)] = 26562, + [SMALL_STATE(309)] = 26614, + [SMALL_STATE(310)] = 26666, + [SMALL_STATE(311)] = 26718, + [SMALL_STATE(312)] = 26770, + [SMALL_STATE(313)] = 26822, + [SMALL_STATE(314)] = 26874, + [SMALL_STATE(315)] = 26926, + [SMALL_STATE(316)] = 26978, + [SMALL_STATE(317)] = 27030, + [SMALL_STATE(318)] = 27082, + [SMALL_STATE(319)] = 27134, + [SMALL_STATE(320)] = 27186, + [SMALL_STATE(321)] = 27238, + [SMALL_STATE(322)] = 27290, + [SMALL_STATE(323)] = 27342, + [SMALL_STATE(324)] = 27394, + [SMALL_STATE(325)] = 27482, + [SMALL_STATE(326)] = 27534, + [SMALL_STATE(327)] = 27586, + [SMALL_STATE(328)] = 27638, + [SMALL_STATE(329)] = 27690, + [SMALL_STATE(330)] = 27742, + [SMALL_STATE(331)] = 27794, + [SMALL_STATE(332)] = 27846, + [SMALL_STATE(333)] = 27898, + [SMALL_STATE(334)] = 27950, + [SMALL_STATE(335)] = 28002, + [SMALL_STATE(336)] = 28054, + [SMALL_STATE(337)] = 28106, + [SMALL_STATE(338)] = 28158, + [SMALL_STATE(339)] = 28210, + [SMALL_STATE(340)] = 28271, + [SMALL_STATE(341)] = 28342, + [SMALL_STATE(342)] = 28411, + [SMALL_STATE(343)] = 28476, + [SMALL_STATE(344)] = 28561, + [SMALL_STATE(345)] = 28624, + [SMALL_STATE(346)] = 28685, + [SMALL_STATE(347)] = 28746, + [SMALL_STATE(348)] = 28800, + [SMALL_STATE(349)] = 28849, + [SMALL_STATE(350)] = 28898, + [SMALL_STATE(351)] = 28947, + [SMALL_STATE(352)] = 28996, + [SMALL_STATE(353)] = 29045, + [SMALL_STATE(354)] = 29094, + [SMALL_STATE(355)] = 29143, + [SMALL_STATE(356)] = 29192, + [SMALL_STATE(357)] = 29241, + [SMALL_STATE(358)] = 29290, + [SMALL_STATE(359)] = 29339, + [SMALL_STATE(360)] = 29388, + [SMALL_STATE(361)] = 29437, + [SMALL_STATE(362)] = 29486, + [SMALL_STATE(363)] = 29535, + [SMALL_STATE(364)] = 29584, + [SMALL_STATE(365)] = 29633, + [SMALL_STATE(366)] = 29682, + [SMALL_STATE(367)] = 29731, + [SMALL_STATE(368)] = 29780, + [SMALL_STATE(369)] = 29829, + [SMALL_STATE(370)] = 29878, + [SMALL_STATE(371)] = 29927, + [SMALL_STATE(372)] = 29976, + [SMALL_STATE(373)] = 30025, + [SMALL_STATE(374)] = 30074, + [SMALL_STATE(375)] = 30123, + [SMALL_STATE(376)] = 30172, + [SMALL_STATE(377)] = 30221, + [SMALL_STATE(378)] = 30270, + [SMALL_STATE(379)] = 30319, + [SMALL_STATE(380)] = 30368, + [SMALL_STATE(381)] = 30417, + [SMALL_STATE(382)] = 30466, + [SMALL_STATE(383)] = 30525, + [SMALL_STATE(384)] = 30581, + [SMALL_STATE(385)] = 30637, + [SMALL_STATE(386)] = 30697, + [SMALL_STATE(387)] = 30761, + [SMALL_STATE(388)] = 30827, + [SMALL_STATE(389)] = 30885, + [SMALL_STATE(390)] = 30953, + [SMALL_STATE(391)] = 31002, + [SMALL_STATE(392)] = 31046, + [SMALL_STATE(393)] = 31090, + [SMALL_STATE(394)] = 31134, + [SMALL_STATE(395)] = 31178, + [SMALL_STATE(396)] = 31222, + [SMALL_STATE(397)] = 31266, + [SMALL_STATE(398)] = 31310, + [SMALL_STATE(399)] = 31354, + [SMALL_STATE(400)] = 31398, + [SMALL_STATE(401)] = 31442, + [SMALL_STATE(402)] = 31486, + [SMALL_STATE(403)] = 31530, + [SMALL_STATE(404)] = 31574, + [SMALL_STATE(405)] = 31618, + [SMALL_STATE(406)] = 31662, + [SMALL_STATE(407)] = 31706, + [SMALL_STATE(408)] = 31750, + [SMALL_STATE(409)] = 31794, + [SMALL_STATE(410)] = 31838, + [SMALL_STATE(411)] = 31882, + [SMALL_STATE(412)] = 31926, + [SMALL_STATE(413)] = 31970, + [SMALL_STATE(414)] = 32014, + [SMALL_STATE(415)] = 32058, + [SMALL_STATE(416)] = 32102, + [SMALL_STATE(417)] = 32146, + [SMALL_STATE(418)] = 32190, + [SMALL_STATE(419)] = 32234, + [SMALL_STATE(420)] = 32278, + [SMALL_STATE(421)] = 32322, + [SMALL_STATE(422)] = 32366, + [SMALL_STATE(423)] = 32410, + [SMALL_STATE(424)] = 32454, + [SMALL_STATE(425)] = 32498, + [SMALL_STATE(426)] = 32550, + [SMALL_STATE(427)] = 32602, + [SMALL_STATE(428)] = 32647, + [SMALL_STATE(429)] = 32700, + [SMALL_STATE(430)] = 32740, + [SMALL_STATE(431)] = 32780, + [SMALL_STATE(432)] = 32820, + [SMALL_STATE(433)] = 32860, + [SMALL_STATE(434)] = 32900, + [SMALL_STATE(435)] = 32940, + [SMALL_STATE(436)] = 32980, + [SMALL_STATE(437)] = 33020, + [SMALL_STATE(438)] = 33060, + [SMALL_STATE(439)] = 33100, + [SMALL_STATE(440)] = 33140, + [SMALL_STATE(441)] = 33180, + [SMALL_STATE(442)] = 33220, + [SMALL_STATE(443)] = 33260, + [SMALL_STATE(444)] = 33300, + [SMALL_STATE(445)] = 33340, + [SMALL_STATE(446)] = 33380, + [SMALL_STATE(447)] = 33420, + [SMALL_STATE(448)] = 33460, + [SMALL_STATE(449)] = 33500, + [SMALL_STATE(450)] = 33540, + [SMALL_STATE(451)] = 33580, + [SMALL_STATE(452)] = 33620, + [SMALL_STATE(453)] = 33660, + [SMALL_STATE(454)] = 33700, + [SMALL_STATE(455)] = 33740, + [SMALL_STATE(456)] = 33780, + [SMALL_STATE(457)] = 33820, + [SMALL_STATE(458)] = 33860, + [SMALL_STATE(459)] = 33900, + [SMALL_STATE(460)] = 33940, + [SMALL_STATE(461)] = 33980, + [SMALL_STATE(462)] = 34020, + [SMALL_STATE(463)] = 34060, + [SMALL_STATE(464)] = 34113, + [SMALL_STATE(465)] = 34164, + [SMALL_STATE(466)] = 34221, + [SMALL_STATE(467)] = 34282, + [SMALL_STATE(468)] = 34345, + [SMALL_STATE(469)] = 34408, + [SMALL_STATE(470)] = 34485, + [SMALL_STATE(471)] = 34539, + [SMALL_STATE(472)] = 34589, + [SMALL_STATE(473)] = 34639, + [SMALL_STATE(474)] = 34691, + [SMALL_STATE(475)] = 34763, + [SMALL_STATE(476)] = 34827, + [SMALL_STATE(477)] = 34897, + [SMALL_STATE(478)] = 34955, + [SMALL_STATE(479)] = 35011, + [SMALL_STATE(480)] = 35081, + [SMALL_STATE(481)] = 35129, + [SMALL_STATE(482)] = 35177, + [SMALL_STATE(483)] = 35228, + [SMALL_STATE(484)] = 35283, + [SMALL_STATE(485)] = 35346, + [SMALL_STATE(486)] = 35387, + [SMALL_STATE(487)] = 35444, + [SMALL_STATE(488)] = 35491, + [SMALL_STATE(489)] = 35548, + [SMALL_STATE(490)] = 35605, + [SMALL_STATE(491)] = 35652, + [SMALL_STATE(492)] = 35711, + [SMALL_STATE(493)] = 35772, + [SMALL_STATE(494)] = 35808, + [SMALL_STATE(495)] = 35874, + [SMALL_STATE(496)] = 35910, + [SMALL_STATE(497)] = 35946, + [SMALL_STATE(498)] = 36016, + [SMALL_STATE(499)] = 36052, + [SMALL_STATE(500)] = 36088, + [SMALL_STATE(501)] = 36124, + [SMALL_STATE(502)] = 36160, + [SMALL_STATE(503)] = 36196, + [SMALL_STATE(504)] = 36244, + [SMALL_STATE(505)] = 36304, + [SMALL_STATE(506)] = 36340, + [SMALL_STATE(507)] = 36406, + [SMALL_STATE(508)] = 36442, + [SMALL_STATE(509)] = 36478, + [SMALL_STATE(510)] = 36514, + [SMALL_STATE(511)] = 36550, + [SMALL_STATE(512)] = 36616, + [SMALL_STATE(513)] = 36666, + [SMALL_STATE(514)] = 36702, + [SMALL_STATE(515)] = 36768, + [SMALL_STATE(516)] = 36804, + [SMALL_STATE(517)] = 36840, + [SMALL_STATE(518)] = 36876, + [SMALL_STATE(519)] = 36942, + [SMALL_STATE(520)] = 36978, + [SMALL_STATE(521)] = 37014, + [SMALL_STATE(522)] = 37050, + [SMALL_STATE(523)] = 37116, + [SMALL_STATE(524)] = 37152, + [SMALL_STATE(525)] = 37216, + [SMALL_STATE(526)] = 37252, + [SMALL_STATE(527)] = 37292, + [SMALL_STATE(528)] = 37328, + [SMALL_STATE(529)] = 37364, + [SMALL_STATE(530)] = 37400, + [SMALL_STATE(531)] = 37436, + [SMALL_STATE(532)] = 37472, + [SMALL_STATE(533)] = 37508, + [SMALL_STATE(534)] = 37544, + [SMALL_STATE(535)] = 37580, + [SMALL_STATE(536)] = 37646, + [SMALL_STATE(537)] = 37682, + [SMALL_STATE(538)] = 37718, + [SMALL_STATE(539)] = 37754, + [SMALL_STATE(540)] = 37790, + [SMALL_STATE(541)] = 37855, + [SMALL_STATE(542)] = 37890, + [SMALL_STATE(543)] = 37925, + [SMALL_STATE(544)] = 37960, + [SMALL_STATE(545)] = 37995, + [SMALL_STATE(546)] = 38030, + [SMALL_STATE(547)] = 38065, + [SMALL_STATE(548)] = 38130, + [SMALL_STATE(549)] = 38165, + [SMALL_STATE(550)] = 38200, + [SMALL_STATE(551)] = 38235, + [SMALL_STATE(552)] = 38270, + [SMALL_STATE(553)] = 38305, + [SMALL_STATE(554)] = 38340, + [SMALL_STATE(555)] = 38385, + [SMALL_STATE(556)] = 38420, + [SMALL_STATE(557)] = 38483, + [SMALL_STATE(558)] = 38518, + [SMALL_STATE(559)] = 38553, + [SMALL_STATE(560)] = 38588, + [SMALL_STATE(561)] = 38623, + [SMALL_STATE(562)] = 38658, + [SMALL_STATE(563)] = 38693, + [SMALL_STATE(564)] = 38742, + [SMALL_STATE(565)] = 38777, + [SMALL_STATE(566)] = 38830, + [SMALL_STATE(567)] = 38885, + [SMALL_STATE(568)] = 38942, + [SMALL_STATE(569)] = 39003, + [SMALL_STATE(570)] = 39038, + [SMALL_STATE(571)] = 39073, + [SMALL_STATE(572)] = 39108, + [SMALL_STATE(573)] = 39143, + [SMALL_STATE(574)] = 39178, + [SMALL_STATE(575)] = 39213, + [SMALL_STATE(576)] = 39276, + [SMALL_STATE(577)] = 39311, + [SMALL_STATE(578)] = 39346, + [SMALL_STATE(579)] = 39381, + [SMALL_STATE(580)] = 39448, + [SMALL_STATE(581)] = 39483, + [SMALL_STATE(582)] = 39546, + [SMALL_STATE(583)] = 39595, + [SMALL_STATE(584)] = 39660, + [SMALL_STATE(585)] = 39695, + [SMALL_STATE(586)] = 39748, + [SMALL_STATE(587)] = 39803, + [SMALL_STATE(588)] = 39860, + [SMALL_STATE(589)] = 39895, + [SMALL_STATE(590)] = 39954, + [SMALL_STATE(591)] = 39989, + [SMALL_STATE(592)] = 40024, + [SMALL_STATE(593)] = 40084, + [SMALL_STATE(594)] = 40146, + [SMALL_STATE(595)] = 40208, + [SMALL_STATE(596)] = 40268, + [SMALL_STATE(597)] = 40326, + [SMALL_STATE(598)] = 40386, + [SMALL_STATE(599)] = 40446, + [SMALL_STATE(600)] = 40506, + [SMALL_STATE(601)] = 40568, + [SMALL_STATE(602)] = 40628, + [SMALL_STATE(603)] = 40688, + [SMALL_STATE(604)] = 40748, + [SMALL_STATE(605)] = 40808, + [SMALL_STATE(606)] = 40868, + [SMALL_STATE(607)] = 40928, + [SMALL_STATE(608)] = 40986, + [SMALL_STATE(609)] = 41046, + [SMALL_STATE(610)] = 41106, + [SMALL_STATE(611)] = 41166, + [SMALL_STATE(612)] = 41226, + [SMALL_STATE(613)] = 41286, + [SMALL_STATE(614)] = 41346, + [SMALL_STATE(615)] = 41408, + [SMALL_STATE(616)] = 41468, + [SMALL_STATE(617)] = 41528, + [SMALL_STATE(618)] = 41590, + [SMALL_STATE(619)] = 41652, + [SMALL_STATE(620)] = 41712, + [SMALL_STATE(621)] = 41770, + [SMALL_STATE(622)] = 41830, + [SMALL_STATE(623)] = 41890, + [SMALL_STATE(624)] = 41948, + [SMALL_STATE(625)] = 42008, + [SMALL_STATE(626)] = 42068, + [SMALL_STATE(627)] = 42128, + [SMALL_STATE(628)] = 42185, + [SMALL_STATE(629)] = 42244, + [SMALL_STATE(630)] = 42301, + [SMALL_STATE(631)] = 42358, + [SMALL_STATE(632)] = 42415, + [SMALL_STATE(633)] = 42472, + [SMALL_STATE(634)] = 42529, + [SMALL_STATE(635)] = 42586, + [SMALL_STATE(636)] = 42643, + [SMALL_STATE(637)] = 42700, + [SMALL_STATE(638)] = 42757, + [SMALL_STATE(639)] = 42818, + [SMALL_STATE(640)] = 42875, + [SMALL_STATE(641)] = 42932, + [SMALL_STATE(642)] = 42991, + [SMALL_STATE(643)] = 43048, + [SMALL_STATE(644)] = 43105, + [SMALL_STATE(645)] = 43162, + [SMALL_STATE(646)] = 43219, + [SMALL_STATE(647)] = 43276, + [SMALL_STATE(648)] = 43337, + [SMALL_STATE(649)] = 43394, + [SMALL_STATE(650)] = 43451, + [SMALL_STATE(651)] = 43508, + [SMALL_STATE(652)] = 43565, + [SMALL_STATE(653)] = 43622, + [SMALL_STATE(654)] = 43679, + [SMALL_STATE(655)] = 43736, + [SMALL_STATE(656)] = 43793, + [SMALL_STATE(657)] = 43850, + [SMALL_STATE(658)] = 43907, + [SMALL_STATE(659)] = 43964, + [SMALL_STATE(660)] = 44022, + [SMALL_STATE(661)] = 44076, + [SMALL_STATE(662)] = 44134, + [SMALL_STATE(663)] = 44194, + [SMALL_STATE(664)] = 44252, + [SMALL_STATE(665)] = 44310, + [SMALL_STATE(666)] = 44370, + [SMALL_STATE(667)] = 44428, + [SMALL_STATE(668)] = 44486, + [SMALL_STATE(669)] = 44544, + [SMALL_STATE(670)] = 44602, + [SMALL_STATE(671)] = 44660, + [SMALL_STATE(672)] = 44715, + [SMALL_STATE(673)] = 44770, + [SMALL_STATE(674)] = 44825, + [SMALL_STATE(675)] = 44880, + [SMALL_STATE(676)] = 44935, + [SMALL_STATE(677)] = 44990, + [SMALL_STATE(678)] = 45045, + [SMALL_STATE(679)] = 45100, + [SMALL_STATE(680)] = 45155, + [SMALL_STATE(681)] = 45210, + [SMALL_STATE(682)] = 45265, + [SMALL_STATE(683)] = 45320, + [SMALL_STATE(684)] = 45372, + [SMALL_STATE(685)] = 45424, + [SMALL_STATE(686)] = 45476, + [SMALL_STATE(687)] = 45528, + [SMALL_STATE(688)] = 45580, + [SMALL_STATE(689)] = 45632, + [SMALL_STATE(690)] = 45684, + [SMALL_STATE(691)] = 45736, + [SMALL_STATE(692)] = 45788, + [SMALL_STATE(693)] = 45840, + [SMALL_STATE(694)] = 45892, + [SMALL_STATE(695)] = 45944, + [SMALL_STATE(696)] = 45996, + [SMALL_STATE(697)] = 46048, + [SMALL_STATE(698)] = 46100, + [SMALL_STATE(699)] = 46152, + [SMALL_STATE(700)] = 46204, + [SMALL_STATE(701)] = 46256, + [SMALL_STATE(702)] = 46308, + [SMALL_STATE(703)] = 46360, + [SMALL_STATE(704)] = 46412, + [SMALL_STATE(705)] = 46464, + [SMALL_STATE(706)] = 46516, + [SMALL_STATE(707)] = 46568, + [SMALL_STATE(708)] = 46620, + [SMALL_STATE(709)] = 46672, + [SMALL_STATE(710)] = 46724, + [SMALL_STATE(711)] = 46776, + [SMALL_STATE(712)] = 46828, + [SMALL_STATE(713)] = 46880, + [SMALL_STATE(714)] = 46932, + [SMALL_STATE(715)] = 46984, + [SMALL_STATE(716)] = 47036, + [SMALL_STATE(717)] = 47088, + [SMALL_STATE(718)] = 47140, + [SMALL_STATE(719)] = 47192, + [SMALL_STATE(720)] = 47244, + [SMALL_STATE(721)] = 47296, + [SMALL_STATE(722)] = 47348, + [SMALL_STATE(723)] = 47400, + [SMALL_STATE(724)] = 47452, + [SMALL_STATE(725)] = 47504, + [SMALL_STATE(726)] = 47556, + [SMALL_STATE(727)] = 47608, + [SMALL_STATE(728)] = 47660, + [SMALL_STATE(729)] = 47712, + [SMALL_STATE(730)] = 47764, + [SMALL_STATE(731)] = 47816, + [SMALL_STATE(732)] = 47868, + [SMALL_STATE(733)] = 47920, + [SMALL_STATE(734)] = 47972, + [SMALL_STATE(735)] = 48024, + [SMALL_STATE(736)] = 48076, + [SMALL_STATE(737)] = 48128, + [SMALL_STATE(738)] = 48180, + [SMALL_STATE(739)] = 48232, + [SMALL_STATE(740)] = 48284, + [SMALL_STATE(741)] = 48336, + [SMALL_STATE(742)] = 48388, + [SMALL_STATE(743)] = 48440, + [SMALL_STATE(744)] = 48492, + [SMALL_STATE(745)] = 48518, + [SMALL_STATE(746)] = 48544, + [SMALL_STATE(747)] = 48570, + [SMALL_STATE(748)] = 48600, + [SMALL_STATE(749)] = 48626, + [SMALL_STATE(750)] = 48651, + [SMALL_STATE(751)] = 48675, + [SMALL_STATE(752)] = 48699, + [SMALL_STATE(753)] = 48723, + [SMALL_STATE(754)] = 48747, + [SMALL_STATE(755)] = 48772, + [SMALL_STATE(756)] = 48797, + [SMALL_STATE(757)] = 48835, + [SMALL_STATE(758)] = 48873, + [SMALL_STATE(759)] = 48911, + [SMALL_STATE(760)] = 48949, + [SMALL_STATE(761)] = 48987, + [SMALL_STATE(762)] = 49025, + [SMALL_STATE(763)] = 49063, + [SMALL_STATE(764)] = 49101, + [SMALL_STATE(765)] = 49139, + [SMALL_STATE(766)] = 49160, + [SMALL_STATE(767)] = 49181, + [SMALL_STATE(768)] = 49202, + [SMALL_STATE(769)] = 49223, + [SMALL_STATE(770)] = 49248, + [SMALL_STATE(771)] = 49283, + [SMALL_STATE(772)] = 49306, + [SMALL_STATE(773)] = 49326, + [SMALL_STATE(774)] = 49350, + [SMALL_STATE(775)] = 49374, + [SMALL_STATE(776)] = 49399, + [SMALL_STATE(777)] = 49418, + [SMALL_STATE(778)] = 49437, + [SMALL_STATE(779)] = 49459, + [SMALL_STATE(780)] = 49493, + [SMALL_STATE(781)] = 49511, + [SMALL_STATE(782)] = 49545, + [SMALL_STATE(783)] = 49563, + [SMALL_STATE(784)] = 49585, + [SMALL_STATE(785)] = 49619, + [SMALL_STATE(786)] = 49651, + [SMALL_STATE(787)] = 49669, + [SMALL_STATE(788)] = 49686, + [SMALL_STATE(789)] = 49703, + [SMALL_STATE(790)] = 49722, + [SMALL_STATE(791)] = 49739, + [SMALL_STATE(792)] = 49756, + [SMALL_STATE(793)] = 49773, + [SMALL_STATE(794)] = 49790, + [SMALL_STATE(795)] = 49812, + [SMALL_STATE(796)] = 49828, + [SMALL_STATE(797)] = 49844, + [SMALL_STATE(798)] = 49860, + [SMALL_STATE(799)] = 49876, + [SMALL_STATE(800)] = 49892, + [SMALL_STATE(801)] = 49908, + [SMALL_STATE(802)] = 49924, + [SMALL_STATE(803)] = 49940, + [SMALL_STATE(804)] = 49956, + [SMALL_STATE(805)] = 49972, + [SMALL_STATE(806)] = 49988, + [SMALL_STATE(807)] = 50002, + [SMALL_STATE(808)] = 50018, + [SMALL_STATE(809)] = 50034, + [SMALL_STATE(810)] = 50050, + [SMALL_STATE(811)] = 50066, + [SMALL_STATE(812)] = 50082, + [SMALL_STATE(813)] = 50098, + [SMALL_STATE(814)] = 50114, + [SMALL_STATE(815)] = 50130, + [SMALL_STATE(816)] = 50146, + [SMALL_STATE(817)] = 50159, + [SMALL_STATE(818)] = 50172, + [SMALL_STATE(819)] = 50185, + [SMALL_STATE(820)] = 50198, + [SMALL_STATE(821)] = 50211, + [SMALL_STATE(822)] = 50224, + [SMALL_STATE(823)] = 50243, + [SMALL_STATE(824)] = 50256, + [SMALL_STATE(825)] = 50269, + [SMALL_STATE(826)] = 50282, + [SMALL_STATE(827)] = 50295, + [SMALL_STATE(828)] = 50314, + [SMALL_STATE(829)] = 50327, + [SMALL_STATE(830)] = 50340, + [SMALL_STATE(831)] = 50353, + [SMALL_STATE(832)] = 50366, + [SMALL_STATE(833)] = 50379, + [SMALL_STATE(834)] = 50402, + [SMALL_STATE(835)] = 50415, + [SMALL_STATE(836)] = 50438, + [SMALL_STATE(837)] = 50451, + [SMALL_STATE(838)] = 50464, + [SMALL_STATE(839)] = 50477, + [SMALL_STATE(840)] = 50490, + [SMALL_STATE(841)] = 50503, + [SMALL_STATE(842)] = 50516, + [SMALL_STATE(843)] = 50529, + [SMALL_STATE(844)] = 50542, + [SMALL_STATE(845)] = 50555, + [SMALL_STATE(846)] = 50573, + [SMALL_STATE(847)] = 50591, + [SMALL_STATE(848)] = 50609, + [SMALL_STATE(849)] = 50625, + [SMALL_STATE(850)] = 50643, + [SMALL_STATE(851)] = 50661, + [SMALL_STATE(852)] = 50679, + [SMALL_STATE(853)] = 50697, + [SMALL_STATE(854)] = 50715, + [SMALL_STATE(855)] = 50731, + [SMALL_STATE(856)] = 50749, + [SMALL_STATE(857)] = 50767, + [SMALL_STATE(858)] = 50785, + [SMALL_STATE(859)] = 50807, + [SMALL_STATE(860)] = 50825, + [SMALL_STATE(861)] = 50843, + [SMALL_STATE(862)] = 50863, + [SMALL_STATE(863)] = 50881, + [SMALL_STATE(864)] = 50899, + [SMALL_STATE(865)] = 50917, + [SMALL_STATE(866)] = 50933, + [SMALL_STATE(867)] = 50951, + [SMALL_STATE(868)] = 50967, + [SMALL_STATE(869)] = 50987, + [SMALL_STATE(870)] = 51007, + [SMALL_STATE(871)] = 51027, + [SMALL_STATE(872)] = 51045, + [SMALL_STATE(873)] = 51061, + [SMALL_STATE(874)] = 51077, + [SMALL_STATE(875)] = 51095, + [SMALL_STATE(876)] = 51111, + [SMALL_STATE(877)] = 51129, + [SMALL_STATE(878)] = 51145, + [SMALL_STATE(879)] = 51165, + [SMALL_STATE(880)] = 51179, + [SMALL_STATE(881)] = 51192, + [SMALL_STATE(882)] = 51205, + [SMALL_STATE(883)] = 51222, + [SMALL_STATE(884)] = 51235, + [SMALL_STATE(885)] = 51254, + [SMALL_STATE(886)] = 51267, + [SMALL_STATE(887)] = 51280, + [SMALL_STATE(888)] = 51293, + [SMALL_STATE(889)] = 51306, + [SMALL_STATE(890)] = 51323, + [SMALL_STATE(891)] = 51342, + [SMALL_STATE(892)] = 51359, + [SMALL_STATE(893)] = 51372, + [SMALL_STATE(894)] = 51385, + [SMALL_STATE(895)] = 51398, + [SMALL_STATE(896)] = 51417, + [SMALL_STATE(897)] = 51430, + [SMALL_STATE(898)] = 51449, + [SMALL_STATE(899)] = 51462, + [SMALL_STATE(900)] = 51479, + [SMALL_STATE(901)] = 51492, + [SMALL_STATE(902)] = 51505, + [SMALL_STATE(903)] = 51524, + [SMALL_STATE(904)] = 51543, + [SMALL_STATE(905)] = 51556, + [SMALL_STATE(906)] = 51569, + [SMALL_STATE(907)] = 51582, + [SMALL_STATE(908)] = 51595, + [SMALL_STATE(909)] = 51608, + [SMALL_STATE(910)] = 51621, + [SMALL_STATE(911)] = 51634, + [SMALL_STATE(912)] = 51651, + [SMALL_STATE(913)] = 51664, + [SMALL_STATE(914)] = 51683, + [SMALL_STATE(915)] = 51700, + [SMALL_STATE(916)] = 51717, + [SMALL_STATE(917)] = 51736, + [SMALL_STATE(918)] = 51749, + [SMALL_STATE(919)] = 51762, + [SMALL_STATE(920)] = 51775, + [SMALL_STATE(921)] = 51788, + [SMALL_STATE(922)] = 51801, + [SMALL_STATE(923)] = 51814, + [SMALL_STATE(924)] = 51827, + [SMALL_STATE(925)] = 51846, + [SMALL_STATE(926)] = 51863, + [SMALL_STATE(927)] = 51876, + [SMALL_STATE(928)] = 51893, + [SMALL_STATE(929)] = 51906, + [SMALL_STATE(930)] = 51923, + [SMALL_STATE(931)] = 51942, + [SMALL_STATE(932)] = 51955, + [SMALL_STATE(933)] = 51968, + [SMALL_STATE(934)] = 51981, + [SMALL_STATE(935)] = 51994, + [SMALL_STATE(936)] = 52007, + [SMALL_STATE(937)] = 52020, + [SMALL_STATE(938)] = 52033, + [SMALL_STATE(939)] = 52046, + [SMALL_STATE(940)] = 52059, + [SMALL_STATE(941)] = 52072, + [SMALL_STATE(942)] = 52085, + [SMALL_STATE(943)] = 52098, + [SMALL_STATE(944)] = 52111, + [SMALL_STATE(945)] = 52124, + [SMALL_STATE(946)] = 52137, + [SMALL_STATE(947)] = 52156, + [SMALL_STATE(948)] = 52175, + [SMALL_STATE(949)] = 52194, + [SMALL_STATE(950)] = 52207, + [SMALL_STATE(951)] = 52220, + [SMALL_STATE(952)] = 52239, + [SMALL_STATE(953)] = 52252, + [SMALL_STATE(954)] = 52265, + [SMALL_STATE(955)] = 52279, + [SMALL_STATE(956)] = 52295, + [SMALL_STATE(957)] = 52311, + [SMALL_STATE(958)] = 52325, + [SMALL_STATE(959)] = 52341, + [SMALL_STATE(960)] = 52357, + [SMALL_STATE(961)] = 52373, + [SMALL_STATE(962)] = 52389, + [SMALL_STATE(963)] = 52405, + [SMALL_STATE(964)] = 52419, + [SMALL_STATE(965)] = 52435, + [SMALL_STATE(966)] = 52451, + [SMALL_STATE(967)] = 52467, + [SMALL_STATE(968)] = 52483, + [SMALL_STATE(969)] = 52499, + [SMALL_STATE(970)] = 52513, + [SMALL_STATE(971)] = 52529, + [SMALL_STATE(972)] = 52545, + [SMALL_STATE(973)] = 52559, + [SMALL_STATE(974)] = 52573, + [SMALL_STATE(975)] = 52589, + [SMALL_STATE(976)] = 52603, + [SMALL_STATE(977)] = 52619, + [SMALL_STATE(978)] = 52635, + [SMALL_STATE(979)] = 52647, + [SMALL_STATE(980)] = 52661, + [SMALL_STATE(981)] = 52675, + [SMALL_STATE(982)] = 52689, + [SMALL_STATE(983)] = 52701, + [SMALL_STATE(984)] = 52717, + [SMALL_STATE(985)] = 52733, + [SMALL_STATE(986)] = 52749, + [SMALL_STATE(987)] = 52765, + [SMALL_STATE(988)] = 52777, + [SMALL_STATE(989)] = 52789, + [SMALL_STATE(990)] = 52805, + [SMALL_STATE(991)] = 52821, + [SMALL_STATE(992)] = 52835, + [SMALL_STATE(993)] = 52851, + [SMALL_STATE(994)] = 52867, + [SMALL_STATE(995)] = 52883, + [SMALL_STATE(996)] = 52897, + [SMALL_STATE(997)] = 52913, + [SMALL_STATE(998)] = 52927, + [SMALL_STATE(999)] = 52941, + [SMALL_STATE(1000)] = 52955, + [SMALL_STATE(1001)] = 52969, + [SMALL_STATE(1002)] = 52985, + [SMALL_STATE(1003)] = 52999, + [SMALL_STATE(1004)] = 53015, + [SMALL_STATE(1005)] = 53027, + [SMALL_STATE(1006)] = 53039, + [SMALL_STATE(1007)] = 53049, + [SMALL_STATE(1008)] = 53063, + [SMALL_STATE(1009)] = 53077, + [SMALL_STATE(1010)] = 53090, + [SMALL_STATE(1011)] = 53101, + [SMALL_STATE(1012)] = 53114, + [SMALL_STATE(1013)] = 53127, + [SMALL_STATE(1014)] = 53140, + [SMALL_STATE(1015)] = 53153, + [SMALL_STATE(1016)] = 53162, + [SMALL_STATE(1017)] = 53175, + [SMALL_STATE(1018)] = 53188, + [SMALL_STATE(1019)] = 53197, + [SMALL_STATE(1020)] = 53210, + [SMALL_STATE(1021)] = 53223, + [SMALL_STATE(1022)] = 53236, + [SMALL_STATE(1023)] = 53245, + [SMALL_STATE(1024)] = 53254, + [SMALL_STATE(1025)] = 53263, + [SMALL_STATE(1026)] = 53272, + [SMALL_STATE(1027)] = 53285, + [SMALL_STATE(1028)] = 53298, + [SMALL_STATE(1029)] = 53309, + [SMALL_STATE(1030)] = 53322, + [SMALL_STATE(1031)] = 53331, + [SMALL_STATE(1032)] = 53344, + [SMALL_STATE(1033)] = 53357, + [SMALL_STATE(1034)] = 53368, + [SMALL_STATE(1035)] = 53379, + [SMALL_STATE(1036)] = 53392, + [SMALL_STATE(1037)] = 53405, + [SMALL_STATE(1038)] = 53416, + [SMALL_STATE(1039)] = 53429, + [SMALL_STATE(1040)] = 53438, + [SMALL_STATE(1041)] = 53451, + [SMALL_STATE(1042)] = 53462, + [SMALL_STATE(1043)] = 53475, + [SMALL_STATE(1044)] = 53488, + [SMALL_STATE(1045)] = 53501, + [SMALL_STATE(1046)] = 53514, + [SMALL_STATE(1047)] = 53527, + [SMALL_STATE(1048)] = 53540, + [SMALL_STATE(1049)] = 53553, + [SMALL_STATE(1050)] = 53566, + [SMALL_STATE(1051)] = 53579, + [SMALL_STATE(1052)] = 53592, + [SMALL_STATE(1053)] = 53605, + [SMALL_STATE(1054)] = 53616, + [SMALL_STATE(1055)] = 53629, + [SMALL_STATE(1056)] = 53642, + [SMALL_STATE(1057)] = 53655, + [SMALL_STATE(1058)] = 53668, + [SMALL_STATE(1059)] = 53677, + [SMALL_STATE(1060)] = 53690, + [SMALL_STATE(1061)] = 53703, + [SMALL_STATE(1062)] = 53716, + [SMALL_STATE(1063)] = 53729, + [SMALL_STATE(1064)] = 53742, + [SMALL_STATE(1065)] = 53755, + [SMALL_STATE(1066)] = 53768, + [SMALL_STATE(1067)] = 53781, + [SMALL_STATE(1068)] = 53794, + [SMALL_STATE(1069)] = 53807, + [SMALL_STATE(1070)] = 53816, + [SMALL_STATE(1071)] = 53829, + [SMALL_STATE(1072)] = 53842, + [SMALL_STATE(1073)] = 53855, + [SMALL_STATE(1074)] = 53868, + [SMALL_STATE(1075)] = 53881, + [SMALL_STATE(1076)] = 53894, + [SMALL_STATE(1077)] = 53907, + [SMALL_STATE(1078)] = 53918, + [SMALL_STATE(1079)] = 53929, + [SMALL_STATE(1080)] = 53942, + [SMALL_STATE(1081)] = 53955, + [SMALL_STATE(1082)] = 53968, + [SMALL_STATE(1083)] = 53981, + [SMALL_STATE(1084)] = 53990, + [SMALL_STATE(1085)] = 53999, + [SMALL_STATE(1086)] = 54012, + [SMALL_STATE(1087)] = 54025, + [SMALL_STATE(1088)] = 54038, + [SMALL_STATE(1089)] = 54051, + [SMALL_STATE(1090)] = 54064, + [SMALL_STATE(1091)] = 54075, + [SMALL_STATE(1092)] = 54088, + [SMALL_STATE(1093)] = 54101, + [SMALL_STATE(1094)] = 54114, + [SMALL_STATE(1095)] = 54127, + [SMALL_STATE(1096)] = 54140, + [SMALL_STATE(1097)] = 54153, + [SMALL_STATE(1098)] = 54164, + [SMALL_STATE(1099)] = 54175, + [SMALL_STATE(1100)] = 54188, + [SMALL_STATE(1101)] = 54201, + [SMALL_STATE(1102)] = 54214, + [SMALL_STATE(1103)] = 54227, + [SMALL_STATE(1104)] = 54240, + [SMALL_STATE(1105)] = 54253, + [SMALL_STATE(1106)] = 54266, + [SMALL_STATE(1107)] = 54279, + [SMALL_STATE(1108)] = 54292, + [SMALL_STATE(1109)] = 54305, + [SMALL_STATE(1110)] = 54316, + [SMALL_STATE(1111)] = 54329, + [SMALL_STATE(1112)] = 54340, + [SMALL_STATE(1113)] = 54351, + [SMALL_STATE(1114)] = 54360, + [SMALL_STATE(1115)] = 54373, + [SMALL_STATE(1116)] = 54381, + [SMALL_STATE(1117)] = 54391, + [SMALL_STATE(1118)] = 54401, + [SMALL_STATE(1119)] = 54411, + [SMALL_STATE(1120)] = 54421, + [SMALL_STATE(1121)] = 54431, + [SMALL_STATE(1122)] = 54441, + [SMALL_STATE(1123)] = 54449, + [SMALL_STATE(1124)] = 54457, + [SMALL_STATE(1125)] = 54467, + [SMALL_STATE(1126)] = 54477, + [SMALL_STATE(1127)] = 54487, + [SMALL_STATE(1128)] = 54497, + [SMALL_STATE(1129)] = 54505, + [SMALL_STATE(1130)] = 54515, + [SMALL_STATE(1131)] = 54523, + [SMALL_STATE(1132)] = 54533, + [SMALL_STATE(1133)] = 54543, + [SMALL_STATE(1134)] = 54553, + [SMALL_STATE(1135)] = 54561, + [SMALL_STATE(1136)] = 54569, + [SMALL_STATE(1137)] = 54577, + [SMALL_STATE(1138)] = 54587, + [SMALL_STATE(1139)] = 54597, + [SMALL_STATE(1140)] = 54607, + [SMALL_STATE(1141)] = 54617, + [SMALL_STATE(1142)] = 54627, + [SMALL_STATE(1143)] = 54637, + [SMALL_STATE(1144)] = 54645, + [SMALL_STATE(1145)] = 54653, + [SMALL_STATE(1146)] = 54663, + [SMALL_STATE(1147)] = 54673, + [SMALL_STATE(1148)] = 54683, + [SMALL_STATE(1149)] = 54693, + [SMALL_STATE(1150)] = 54703, + [SMALL_STATE(1151)] = 54713, + [SMALL_STATE(1152)] = 54723, + [SMALL_STATE(1153)] = 54733, + [SMALL_STATE(1154)] = 54743, + [SMALL_STATE(1155)] = 54753, + [SMALL_STATE(1156)] = 54763, + [SMALL_STATE(1157)] = 54773, + [SMALL_STATE(1158)] = 54783, + [SMALL_STATE(1159)] = 54793, + [SMALL_STATE(1160)] = 54803, + [SMALL_STATE(1161)] = 54813, + [SMALL_STATE(1162)] = 54823, + [SMALL_STATE(1163)] = 54833, + [SMALL_STATE(1164)] = 54841, + [SMALL_STATE(1165)] = 54851, + [SMALL_STATE(1166)] = 54861, + [SMALL_STATE(1167)] = 54871, + [SMALL_STATE(1168)] = 54881, + [SMALL_STATE(1169)] = 54891, + [SMALL_STATE(1170)] = 54901, + [SMALL_STATE(1171)] = 54909, + [SMALL_STATE(1172)] = 54917, + [SMALL_STATE(1173)] = 54925, + [SMALL_STATE(1174)] = 54933, + [SMALL_STATE(1175)] = 54943, + [SMALL_STATE(1176)] = 54953, + [SMALL_STATE(1177)] = 54961, + [SMALL_STATE(1178)] = 54969, + [SMALL_STATE(1179)] = 54979, + [SMALL_STATE(1180)] = 54987, + [SMALL_STATE(1181)] = 54997, + [SMALL_STATE(1182)] = 55004, + [SMALL_STATE(1183)] = 55011, + [SMALL_STATE(1184)] = 55018, + [SMALL_STATE(1185)] = 55025, + [SMALL_STATE(1186)] = 55032, + [SMALL_STATE(1187)] = 55039, + [SMALL_STATE(1188)] = 55046, + [SMALL_STATE(1189)] = 55053, + [SMALL_STATE(1190)] = 55060, + [SMALL_STATE(1191)] = 55067, + [SMALL_STATE(1192)] = 55074, + [SMALL_STATE(1193)] = 55081, + [SMALL_STATE(1194)] = 55088, + [SMALL_STATE(1195)] = 55095, + [SMALL_STATE(1196)] = 55102, + [SMALL_STATE(1197)] = 55109, + [SMALL_STATE(1198)] = 55116, + [SMALL_STATE(1199)] = 55123, + [SMALL_STATE(1200)] = 55130, + [SMALL_STATE(1201)] = 55137, + [SMALL_STATE(1202)] = 55144, + [SMALL_STATE(1203)] = 55151, + [SMALL_STATE(1204)] = 55158, + [SMALL_STATE(1205)] = 55165, + [SMALL_STATE(1206)] = 55172, + [SMALL_STATE(1207)] = 55179, + [SMALL_STATE(1208)] = 55186, + [SMALL_STATE(1209)] = 55193, + [SMALL_STATE(1210)] = 55200, + [SMALL_STATE(1211)] = 55207, + [SMALL_STATE(1212)] = 55214, + [SMALL_STATE(1213)] = 55221, + [SMALL_STATE(1214)] = 55228, + [SMALL_STATE(1215)] = 55235, + [SMALL_STATE(1216)] = 55242, + [SMALL_STATE(1217)] = 55249, + [SMALL_STATE(1218)] = 55256, + [SMALL_STATE(1219)] = 55263, + [SMALL_STATE(1220)] = 55270, + [SMALL_STATE(1221)] = 55277, + [SMALL_STATE(1222)] = 55284, + [SMALL_STATE(1223)] = 55291, + [SMALL_STATE(1224)] = 55298, + [SMALL_STATE(1225)] = 55305, + [SMALL_STATE(1226)] = 55312, + [SMALL_STATE(1227)] = 55319, + [SMALL_STATE(1228)] = 55326, + [SMALL_STATE(1229)] = 55333, + [SMALL_STATE(1230)] = 55340, + [SMALL_STATE(1231)] = 55347, + [SMALL_STATE(1232)] = 55354, + [SMALL_STATE(1233)] = 55361, + [SMALL_STATE(1234)] = 55368, + [SMALL_STATE(1235)] = 55375, + [SMALL_STATE(1236)] = 55382, + [SMALL_STATE(1237)] = 55389, + [SMALL_STATE(1238)] = 55396, + [SMALL_STATE(1239)] = 55403, + [SMALL_STATE(1240)] = 55410, + [SMALL_STATE(1241)] = 55417, + [SMALL_STATE(1242)] = 55424, + [SMALL_STATE(1243)] = 55431, + [SMALL_STATE(1244)] = 55438, + [SMALL_STATE(1245)] = 55445, + [SMALL_STATE(1246)] = 55452, + [SMALL_STATE(1247)] = 55459, + [SMALL_STATE(1248)] = 55466, + [SMALL_STATE(1249)] = 55473, + [SMALL_STATE(1250)] = 55480, + [SMALL_STATE(1251)] = 55487, + [SMALL_STATE(1252)] = 55494, + [SMALL_STATE(1253)] = 55501, + [SMALL_STATE(1254)] = 55508, + [SMALL_STATE(1255)] = 55515, + [SMALL_STATE(1256)] = 55522, + [SMALL_STATE(1257)] = 55529, + [SMALL_STATE(1258)] = 55536, + [SMALL_STATE(1259)] = 55543, + [SMALL_STATE(1260)] = 55550, + [SMALL_STATE(1261)] = 55557, + [SMALL_STATE(1262)] = 55564, + [SMALL_STATE(1263)] = 55571, + [SMALL_STATE(1264)] = 55578, + [SMALL_STATE(1265)] = 55585, + [SMALL_STATE(1266)] = 55592, + [SMALL_STATE(1267)] = 55599, + [SMALL_STATE(1268)] = 55606, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(242), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(882), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1271), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(191), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1117), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1116), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1111), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(61), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(959), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(219), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1134), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1264), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1263), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(692), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(228), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(887), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(874), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(873), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1261), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(132), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(213), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1260), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(303), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(209), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(335), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(961), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(335), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_communication_case, 3, .production_id = 88), - [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_communication_case, 3, .production_id = 88), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 3, .production_id = 39), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_case, 3, .production_id = 39), - [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 4, .production_id = 101), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_case, 4, .production_id = 101), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_case, 2), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_case, 2), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_case, 3, .production_id = 7), - [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_case, 3, .production_id = 7), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), - [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 3), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 2, .production_id = 26), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_labeled_statement, 2, .production_id = 26), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 86), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 57), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 43), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 43), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 40), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 40), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 20), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 20), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 5), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(236), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(572), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1124), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(125), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(720), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1146), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1240), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1277), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(719), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1237), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(705), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 72), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 72), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1), SHIFT(705), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 41), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 41), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 69), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 69), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1206), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(684), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT_REPEAT(300), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 3), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 3), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .dynamic_precedence = 2), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .dynamic_precedence = 2), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, .production_id = 46), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, .production_id = 46), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 3, .production_id = 27), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 3, .production_id = 27), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 5), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 5), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statement, 1), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statement, 1), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 71), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 71), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 2, .production_id = 15), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, .production_id = 15), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 5, .production_id = 80), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 5, .production_id = 80), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec_list, 2), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec_list, 2), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .dynamic_precedence = 2), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .dynamic_precedence = 2), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_clause, 2, .production_id = 2), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_clause, 2, .production_id = 2), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_type, 3, .production_id = 23), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_type, 3, .production_id = 23), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2, .production_id = 7), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2, .production_id = 7), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 2, .production_id = 16), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, .production_id = 16), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 6), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 6), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 73), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 73), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .dynamic_precedence = 2), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .dynamic_precedence = 2), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 21), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 21), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 70), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 70), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec_list, 3), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec_list, 3), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 31), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 31), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1206), - [859] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(737), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(1259), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(111), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(731), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 93), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 93), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 94), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 94), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 4), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 4), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 1, .production_id = 3), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1, .production_id = 3), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .production_id = 34), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .production_id = 34), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 4), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 4), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, .production_id = 102), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, .production_id = 102), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, .production_id = 105), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, .production_id = 105), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_conversion_expression, 5, .dynamic_precedence = -1, .production_id = 60), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_conversion_expression, 5, .dynamic_precedence = -1, .production_id = 60), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_literal, 4, .production_id = 44), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_literal, 4, .production_id = 44), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_conversion_expression, 4, .dynamic_precedence = -1, .production_id = 60), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_conversion_expression, 4, .dynamic_precedence = -1, .production_id = 60), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 3), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 3), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 62), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 62), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 61), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 61), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion_expression, 5, .production_id = 89), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion_expression, 5, .production_id = 89), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 4), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 4), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 99), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 99), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 2), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 2), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 90), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 90), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_literal, 3, .production_id = 22), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_literal, 3, .production_id = 22), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 5), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 5), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 36), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 36), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_literal, 2, .production_id = 13), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_literal, 2, .production_id = 13), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_literal, 2, .production_id = 12), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_literal, 2, .production_id = 12), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 91), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 91), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(684), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_list_repeat1, 2), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 1, .production_id = 25), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 1, .production_id = 25), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_statement, 1, .production_id = 59), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 2, .production_id = 17), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 2, .production_id = 17), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 1, .production_id = 4), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 1, .production_id = 4), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [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(238), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(238), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(912), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1262), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(152), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1011), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1012), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1013), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(997), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1124), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1254), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1252), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(179), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(894), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(873), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(872), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1248), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(222), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(228), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1247), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(303), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(235), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(320), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1002), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(320), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_communication_case, 3, .production_id = 88), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_communication_case, 3, .production_id = 88), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_case, 3, .production_id = 7), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_case, 3, .production_id = 7), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 4, .production_id = 101), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_case, 4, .production_id = 101), + [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_case, 2), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_case, 2), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 3, .production_id = 39), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_case, 3, .production_id = 39), + [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 3), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), + [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 2, .production_id = 26), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_labeled_statement, 2, .production_id = 26), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 86), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 57), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 40), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 40), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 43), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 43), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 20), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 20), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 5), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(236), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(583), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1153), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(92), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(704), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1162), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1226), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1263), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(695), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1214), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(708), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1181), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(717), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 72), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 72), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 69), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 69), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1), SHIFT(708), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 41), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 41), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 6), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 6), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 94), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 94), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT_REPEAT(299), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 73), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 73), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 71), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 71), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 70), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 70), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 3, .production_id = 27), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 3, .production_id = 27), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 2, .production_id = 15), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, .production_id = 15), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec_list, 2), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec_list, 2), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .dynamic_precedence = 2), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .dynamic_precedence = 2), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 21), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 21), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec_list, 3), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec_list, 3), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2, .production_id = 7), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2, .production_id = 7), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .dynamic_precedence = 2), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .dynamic_precedence = 2), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 1, .production_id = 3), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1, .production_id = 3), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_type, 3, .production_id = 23), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_type, 3, .production_id = 23), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .dynamic_precedence = 2), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .dynamic_precedence = 2), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_clause, 2, .production_id = 2), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_clause, 2, .production_id = 2), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 3), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 3), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statement, 1), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statement, 1), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 5, .production_id = 80), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 5, .production_id = 80), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 2, .production_id = 16), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, .production_id = 16), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1181), + [861] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(739), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(1203), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(130), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(684), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 93), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 93), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 31), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 31), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 5), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 5), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, .production_id = 46), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, .production_id = 46), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 4), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 4), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_literal, 2, .production_id = 12), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_literal, 2, .production_id = 12), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_conversion_expression, 4, .dynamic_precedence = -1, .production_id = 60), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_conversion_expression, 4, .dynamic_precedence = -1, .production_id = 60), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 91), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 91), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 5), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 5), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 90), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 90), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, .production_id = 105), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, .production_id = 105), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 36), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 36), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion_expression, 5, .production_id = 89), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion_expression, 5, .production_id = 89), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_conversion_expression, 5, .dynamic_precedence = -1, .production_id = 60), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_conversion_expression, 5, .dynamic_precedence = -1, .production_id = 60), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 4), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 4), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 62), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 62), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, .production_id = 102), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, .production_id = 102), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 3), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 3), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 4), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 4), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_literal, 3, .production_id = 22), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_literal, 3, .production_id = 22), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 99), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 99), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_literal, 4, .production_id = 44), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_literal, 4, .production_id = 44), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 61), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 61), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .production_id = 34), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .production_id = 34), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 2), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 2), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_literal, 2, .production_id = 13), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_literal, 2, .production_id = 13), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(717), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_list_repeat1, 2), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 1, .production_id = 25), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 1, .production_id = 25), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_statement, 1, .production_id = 59), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 2, .production_id = 17), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 2, .production_id = 17), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 1, .production_id = 4), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 1, .production_id = 4), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_statement, 2), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_statement, 2), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 35), [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 35), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_statement, 2), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_statement, 2), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_element, 1), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(561), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_statement, 3, .production_id = 33), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 2, .production_id = 29), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 4, .production_id = 84), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_spec, 2, .production_id = 54), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_spec, 2, .production_id = 54), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_const_spec_repeat1, 2), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_spec_repeat1, 2), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1235), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(140), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1211), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1244), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1259), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(547), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_element, 1), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_statement, 3, .production_id = 33), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_spec, 2, .production_id = 54), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_spec, 2, .production_id = 54), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 2, .production_id = 29), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 4, .production_id = 84), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_const_spec_repeat1, 2), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_spec_repeat1, 2), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1201), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(195), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1243), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1225), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1203), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 65), [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 65), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 5), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 5), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1029), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1150), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1031), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1140), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(961), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 49), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 49), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(235), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_name, 1, .production_id = 1), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_name, 1, .production_id = 1), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_term, 1, .production_id = 1), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 2, .production_id = 18), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 2, .production_id = 18), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 1, .production_id = 19), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 1, .production_id = 19), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 51), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 51), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 3, .production_id = 38), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 3, .production_id = 38), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(20), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(20), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), SHIFT_REPEAT(89), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), SHIFT_REPEAT(1267), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 39), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 39), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), SHIFT_REPEAT(53), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), SHIFT_REPEAT(1267), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(157), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 78), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 78), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), SHIFT_REPEAT(722), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), SHIFT_REPEAT(1267), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 81), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 81), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2), SHIFT_REPEAT(665), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 4, .production_id = 64), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 4, .production_id = 64), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 30), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 30), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 32), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 32), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fallthrough_statement, 1), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fallthrough_statement, 1), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_var_declaration, 3, .production_id = 33), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_var_declaration, 3, .production_id = 33), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 3), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 3), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 97), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 97), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 3, .production_id = 37), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 3, .production_id = 37), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 3), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 7, .production_id = 97), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 7, .production_id = 97), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_elem, 1), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_elem, 1), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_elem, 1), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_elem, 1), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 100), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 100), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 4), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 4), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 3, .production_id = 37), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 3, .production_id = 37), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 87), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 87), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 3, .production_id = 47), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 3, .production_id = 47), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 3, .production_id = 48), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_spec, 3, .production_id = 48), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_elem, 2), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_elem, 2), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 2, .production_id = 24), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_spec, 2, .production_id = 24), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_elem, 2), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_elem, 2), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 4), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 4), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 5, .production_id = 92), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 5, .production_id = 92), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 5, .production_id = 92), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 5, .production_id = 92), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 2), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 2), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_switch_statement, 4, .production_id = 58), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_switch_statement, 4, .production_id = 58), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 4, .production_id = 7), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 4, .production_id = 7), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, .production_id = 8), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, .production_id = 8), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 4), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, .production_id = 8), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, .production_id = 8), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 7), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 7), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 4, .production_id = 63), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 4, .production_id = 63), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, .production_id = 8), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, .production_id = 8), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_switch_statement, 5, .production_id = 58), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_switch_statement, 5, .production_id = 58), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 4, .production_id = 63), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 4, .production_id = 63), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 4, .production_id = 64), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 4, .production_id = 64), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 87), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 87), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 9), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 9), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_statement, 2), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_statement, 2), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), SHIFT_REPEAT(1036), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_elem_repeat1, 2), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_elem_repeat1, 2), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_elem_repeat1, 2), SHIFT_REPEAT(916), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 82), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 82), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_statement, 2), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_statement, 2), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(479), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_term, 1, .production_id = 1), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_repeat1, 2), SHIFT_REPEAT(769), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_type_repeat1, 2), SHIFT_REPEAT(769), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_type_repeat1, 2), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2), SHIFT_REPEAT(643), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(981), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(981), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_term, 2), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_term, 2), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_term, 2, .production_id = 53), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_term, 2, .production_id = 53), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_term, 1), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_term, 1), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(1067), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(710), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 67), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_value_repeat1, 2), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_value_repeat1, 2), SHIFT_REPEAT(51), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 1), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(126), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 19), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(677), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 95), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 95), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(650), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 74), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 74), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 75), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 75), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 77), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 77), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 52), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 52), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 50), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 50), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 1), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 1), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_spec, 3, .production_id = 79), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_spec, 3, .production_id = 79), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_case, 4, .production_id = 7), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 18), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_repeat1, 2), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_communication_case, 4, .production_id = 88), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(207), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 1), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 4, .production_id = 39), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 5, .production_id = 101), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(137), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 1), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_name, 1), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_name, 1), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_case, 3), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 39), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 1), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_element, 3), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 5), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 5), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1009), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1144), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1094), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1142), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1002), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(137), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_name, 1, .production_id = 1), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_name, 1, .production_id = 1), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_term, 1, .production_id = 1), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 49), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 49), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), SHIFT_REPEAT(53), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), SHIFT_REPEAT(1240), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(189), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 1, .production_id = 19), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 1, .production_id = 19), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), SHIFT_REPEAT(82), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), SHIFT_REPEAT(1240), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 3, .production_id = 38), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 3, .production_id = 38), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(20), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(20), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 51), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 51), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 78), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 78), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), SHIFT_REPEAT(706), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), SHIFT_REPEAT(1240), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 2, .production_id = 18), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 2, .production_id = 18), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 81), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 81), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 39), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 39), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, .production_id = 8), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, .production_id = 8), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2), SHIFT_REPEAT(668), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 87), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 87), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 4, .production_id = 64), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 4, .production_id = 64), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 3, .production_id = 47), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 3, .production_id = 47), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 82), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 82), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_elem_repeat1, 2), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_elem_repeat1, 2), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_elem_repeat1, 2), SHIFT_REPEAT(914), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), SHIFT_REPEAT(1040), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 100), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 100), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 3, .production_id = 48), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_spec, 3, .production_id = 48), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fallthrough_statement, 1), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fallthrough_statement, 1), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_switch_statement, 5, .production_id = 58), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_switch_statement, 5, .production_id = 58), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 7), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 7), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 2, .production_id = 24), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_spec, 2, .production_id = 24), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_statement, 2), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_statement, 2), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_statement, 2), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_statement, 2), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_elem, 2), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_elem, 2), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_elem, 2), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_elem, 2), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 5, .production_id = 92), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 5, .production_id = 92), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 5, .production_id = 92), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 5, .production_id = 92), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 3, .production_id = 37), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 3, .production_id = 37), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 4, .production_id = 64), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 4, .production_id = 64), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 4), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 4), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 4, .production_id = 63), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 4, .production_id = 63), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_elem, 1), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_elem, 1), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 4, .production_id = 63), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 4, .production_id = 63), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_elem, 1), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_elem, 1), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 9), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 9), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_switch_statement, 4, .production_id = 58), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_switch_statement, 4, .production_id = 58), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 30), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 30), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 3), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 3), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 4), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 4), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 3, .production_id = 37), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 3, .production_id = 37), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, .production_id = 8), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, .production_id = 8), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, .production_id = 8), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, .production_id = 8), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 87), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 87), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 2), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 2), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 4, .production_id = 7), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 4, .production_id = 7), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 3), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 97), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 97), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 7, .production_id = 97), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 7, .production_id = 97), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_var_declaration, 3, .production_id = 33), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_var_declaration, 3, .production_id = 33), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 4), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 32), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 32), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(970), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(970), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(479), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2), SHIFT_REPEAT(638), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_term, 1), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_term, 1), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(981), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_term, 2, .production_id = 53), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_term, 2, .production_id = 53), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_term, 2), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_term, 2), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(730), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_repeat1, 2), SHIFT_REPEAT(770), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_type_repeat1, 2), SHIFT_REPEAT(770), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_type_repeat1, 2), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_term, 1, .production_id = 1), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 95), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 95), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 67), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 5, .production_id = 101), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(227), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 4, .production_id = 39), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 18), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_case, 3), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_communication_case, 4, .production_id = 88), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 50), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 50), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_case, 4, .production_id = 7), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 52), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 52), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(674), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(129), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_value_repeat1, 2), SHIFT_REPEAT(51), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_value_repeat1, 2), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(168), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_repeat1, 2), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_spec, 3, .production_id = 79), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_spec, 3, .production_id = 79), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 19), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 77), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 77), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 75), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 75), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(641), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_name, 1), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_name, 1), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 74), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 74), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_element, 3), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_argument, 2), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 1), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 39), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 3, .production_id = 66), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_argument, 2), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 3, .production_id = 66), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 96), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 83), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 85), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 55), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 5, .production_id = 98), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 7, .production_id = 103), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 7, .production_id = 104), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_length_array_type, 4, .production_id = 45), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 9, .production_id = 106), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2802] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 55), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 96), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 5, .production_id = 98), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 85), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 83), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 7, .production_id = 103), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 7, .production_id = 104), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 9, .production_id = 106), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_length_array_type, 4, .production_id = 45), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2780] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), }; #ifdef __cplusplus