diff --git a/corpus/source_files.txt b/corpus/source_files.txt index 474f2f24..8c1e95bd 100644 --- a/corpus/source_files.txt +++ b/corpus/source_files.txt @@ -100,6 +100,54 @@ 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 be187896..52e51665 100644 --- a/grammar.js +++ b/grammar.js @@ -895,15 +895,19 @@ 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: $ => token(choice( - seq('//', /.*/), + comment: $ => choice( + seq('//', $.directive, /.*/), + seq('// ', /.*/), seq( '/*', /[^*]*\*+([^/*][^*]*\*+)*/, '/' ) - )) + ) } }) diff --git a/src/grammar.json b/src/grammar.json index 962f3fa7..a878d8a8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6720,43 +6720,64 @@ "type": "STRING", "value": "iota" }, - "comment": { + "directive": { "type": "TOKEN", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" - } - ] - } - ] + "type": "PATTERN", + "value": "(line |extern |export |[a-z0-9]+:[a-z0-9])" } + }, + "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 ff2c4d85..4048fba0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -588,6 +588,21 @@ } } }, + { + "type": "comment", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "directive", + "named": true + } + ] + } + }, { "type": "communication_case", "named": true, @@ -2603,6 +2618,18 @@ "type": "/", "named": false }, + { + "type": "/*", + "named": false + }, + { + "type": "//", + "named": false + }, + { + "type": "// ", + "named": false + }, { "type": "/=", "named": false @@ -2695,10 +2722,6 @@ "type": "chan", "named": false }, - { - "type": "comment", - "named": true - }, { "type": "const", "named": false @@ -2715,6 +2738,10 @@ "type": "defer", "named": false }, + { + "type": "directive", + "named": true + }, { "type": "else", "named": false diff --git a/src/parser.c b/src/parser.c index 0bd15299..27ac1ee5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1269 -#define LARGE_STATE_COUNT 22 -#define SYMBOL_COUNT 210 +#define STATE_COUNT 1283 +#define LARGE_STATE_COUNT 27 +#define SYMBOL_COUNT 216 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 92 +#define TOKEN_COUNT 97 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 35 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -107,129 +107,135 @@ enum { sym_true = 88, sym_false = 89, sym_iota = 90, - 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, + 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, }; static const char * const ts_symbol_names[] = { @@ -324,7 +330,12 @@ static const char * const ts_symbol_names[] = { [sym_true] = "true", [sym_false] = "false", [sym_iota] = "iota", - [sym_comment] = "comment", + [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_source_file] = "source_file", [sym_package_clause] = "package_clause", [sym_import_declaration] = "import_declaration", @@ -420,6 +431,7 @@ 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", @@ -541,7 +553,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_true] = sym_true, [sym_false] = sym_false, [sym_iota] = sym_iota, - [sym_comment] = sym_comment, + [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_source_file] = sym_source_file, [sym_package_clause] = sym_package_clause, [sym_import_declaration] = sym_import_declaration, @@ -637,6 +654,7 @@ 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, @@ -1031,10 +1049,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_comment] = { + [sym_directive] = { .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, @@ -1419,6 +1457,10 @@ 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, @@ -2114,12 +2156,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 10, [11] = 11, [12] = 11, - [13] = 13, + [13] = 11, [14] = 11, [15] = 11, [16] = 11, [17] = 11, - [18] = 11, + [18] = 18, [19] = 19, [20] = 20, [21] = 21, @@ -2133,210 +2175,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 31, - [33] = 31, - [34] = 31, - [35] = 31, - [36] = 31, - [37] = 37, - [38] = 38, + [32] = 32, + [33] = 33, + [34] = 33, + [35] = 33, + [36] = 33, + [37] = 33, + [38] = 33, [39] = 39, - [40] = 40, - [41] = 40, + [40] = 39, + [41] = 41, [42] = 39, [43] = 39, - [44] = 40, - [45] = 40, - [46] = 39, + [44] = 41, + [45] = 41, + [46] = 41, [47] = 39, - [48] = 40, - [49] = 39, - [50] = 40, + [48] = 39, + [49] = 41, + [50] = 41, [51] = 51, [52] = 52, [53] = 53, [54] = 54, - [55] = 55, + [55] = 54, [56] = 56, [57] = 54, - [58] = 56, + [58] = 58, [59] = 56, - [60] = 54, + [60] = 58, [61] = 61, - [62] = 61, - [63] = 61, - [64] = 64, - [65] = 54, - [66] = 54, - [67] = 61, - [68] = 68, + [62] = 54, + [63] = 56, + [64] = 58, + [65] = 65, + [66] = 58, + [67] = 54, + [68] = 56, [69] = 56, - [70] = 61, - [71] = 54, - [72] = 61, - [73] = 73, - [74] = 56, + [70] = 54, + [71] = 71, + [72] = 72, + [73] = 58, + [74] = 58, [75] = 75, [76] = 56, [77] = 77, [78] = 78, [79] = 79, - [80] = 80, + [80] = 77, [81] = 81, - [82] = 82, + [82] = 81, [83] = 83, [84] = 84, - [85] = 85, - [86] = 80, - [87] = 85, + [85] = 79, + [86] = 86, + [87] = 87, [88] = 88, - [89] = 85, - [90] = 88, - [91] = 91, - [92] = 80, - [93] = 77, - [94] = 83, - [95] = 88, - [96] = 80, + [89] = 89, + [90] = 90, + [91] = 83, + [92] = 92, + [93] = 93, + [94] = 86, + [95] = 79, + [96] = 79, [97] = 97, - [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, + [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, [111] = 111, [112] = 112, - [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, + [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, [131] = 131, [132] = 132, [133] = 133, [134] = 134, [135] = 135, - [136] = 136, + [136] = 135, [137] = 137, [138] = 138, [139] = 139, - [140] = 140, - [141] = 141, - [142] = 133, + [140] = 137, + [141] = 131, + [142] = 142, [143] = 143, - [144] = 134, - [145] = 138, - [146] = 139, - [147] = 143, - [148] = 140, - [149] = 149, - [150] = 131, - [151] = 136, - [152] = 149, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 146, + [148] = 144, + [149] = 139, + [150] = 143, + [151] = 142, + [152] = 152, [153] = 153, - [154] = 154, - [155] = 135, - [156] = 140, - [157] = 154, - [158] = 153, - [159] = 139, + [154] = 153, + [155] = 133, + [156] = 135, + [157] = 137, + [158] = 139, + [159] = 131, [160] = 138, - [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, + [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, [182] = 131, - [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, + [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, [213] = 213, - [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, + [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, [231] = 153, - [232] = 134, - [233] = 131, - [234] = 133, - [235] = 141, + [232] = 145, + [233] = 233, + [234] = 144, + [235] = 137, [236] = 236, [237] = 237, [238] = 238, @@ -2402,15 +2444,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [298] = 298, [299] = 299, [300] = 300, - [301] = 278, + [301] = 263, [302] = 302, [303] = 303, - [304] = 257, - [305] = 305, + [304] = 304, + [305] = 273, [306] = 306, [307] = 307, [308] = 308, - [309] = 264, + [309] = 309, [310] = 310, [311] = 311, [312] = 312, @@ -2418,7 +2460,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [314] = 314, [315] = 315, [316] = 316, - [317] = 317, + [317] = 266, [318] = 318, [319] = 319, [320] = 320, @@ -2434,518 +2476,518 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [330] = 330, [331] = 331, [332] = 332, - [333] = 333, + [333] = 271, [334] = 334, [335] = 335, [336] = 336, - [337] = 248, + [337] = 337, [338] = 338, - [339] = 265, - [340] = 295, - [341] = 296, - [342] = 297, - [343] = 283, - [344] = 298, - [345] = 300, - [346] = 294, + [339] = 253, + [340] = 296, + [341] = 294, + [342] = 298, + [343] = 276, + [344] = 299, + [345] = 295, + [346] = 297, [347] = 303, - [348] = 278, - [349] = 308, - [350] = 336, - [351] = 248, - [352] = 334, - [353] = 329, - [354] = 323, - [355] = 338, - [356] = 312, + [348] = 316, + [349] = 334, + [350] = 320, + [351] = 312, + [352] = 338, + [353] = 313, + [354] = 315, + [355] = 327, + [356] = 307, [357] = 306, - [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, + [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, [390] = 303, - [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, + [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, [427] = 303, - [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, + [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, [457] = 315, - [458] = 312, - [459] = 314, - [460] = 326, - [461] = 330, - [462] = 308, - [463] = 298, - [464] = 265, - [465] = 297, - [466] = 296, + [458] = 313, + [459] = 319, + [460] = 318, + [461] = 320, + [462] = 266, + [463] = 463, + [464] = 276, + [465] = 298, + [466] = 466, [467] = 295, - [468] = 468, - [469] = 469, - [470] = 296, - [471] = 298, - [472] = 265, - [473] = 297, - [474] = 474, - [475] = 38, - [476] = 476, - [477] = 389, + [468] = 294, + [469] = 297, + [470] = 470, + [471] = 471, + [472] = 276, + [473] = 294, + [474] = 298, + [475] = 297, + [476] = 299, + [477] = 32, [478] = 295, [479] = 479, - [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, + [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, [505] = 332, - [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, + [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, [575] = 575, - [576] = 314, - [577] = 338, - [578] = 334, - [579] = 579, - [580] = 323, + [576] = 323, + [577] = 311, + [578] = 332, + [579] = 338, + [580] = 295, [581] = 581, - [582] = 298, - [583] = 540, - [584] = 278, - [585] = 297, - [586] = 296, - [587] = 295, - [588] = 329, - [589] = 589, - [590] = 336, - [591] = 335, - [592] = 592, + [582] = 316, + [583] = 318, + [584] = 313, + [585] = 326, + [586] = 325, + [587] = 266, + [588] = 314, + [589] = 312, + [590] = 334, + [591] = 319, + [592] = 32, [593] = 593, - [594] = 593, + [594] = 594, [595] = 595, - [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, + [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, [628] = 628, [629] = 629, - [630] = 630, + [630] = 628, [631] = 631, [632] = 632, [633] = 633, - [634] = 629, - [635] = 632, - [636] = 633, + [634] = 634, + [635] = 634, + [636] = 634, [637] = 632, - [638] = 638, - [639] = 639, - [640] = 633, - [641] = 641, - [642] = 489, - [643] = 633, - [644] = 629, - [645] = 632, + [638] = 634, + [639] = 628, + [640] = 632, + [641] = 632, + [642] = 628, + [643] = 643, + [644] = 628, + [645] = 645, [646] = 632, - [647] = 647, - [648] = 639, - [649] = 633, - [650] = 629, + [647] = 628, + [648] = 632, + [649] = 649, + [650] = 650, [651] = 651, - [652] = 629, - [653] = 639, - [654] = 654, - [655] = 639, - [656] = 633, - [657] = 632, - [658] = 629, - [659] = 581, + [652] = 634, + [653] = 634, + [654] = 649, + [655] = 649, + [656] = 656, + [657] = 649, + [658] = 658, + [659] = 574, [660] = 660, - [661] = 581, - [662] = 662, - [663] = 581, - [664] = 664, + [661] = 574, + [662] = 574, + [663] = 663, + [664] = 574, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 581, - [670] = 581, + [669] = 574, + [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, [675] = 675, [676] = 676, - [677] = 675, + [677] = 677, [678] = 671, - [679] = 671, + [679] = 673, [680] = 680, - [681] = 681, - [682] = 675, + [681] = 671, + [682] = 673, [683] = 683, [684] = 684, [685] = 685, [686] = 686, - [687] = 685, + [687] = 687, [688] = 688, - [689] = 689, - [690] = 690, - [691] = 685, + [689] = 685, + [690] = 686, + [691] = 691, [692] = 692, - [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, + [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, [713] = 713, - [714] = 714, - [715] = 714, - [716] = 700, - [717] = 708, - [718] = 694, - [719] = 689, - [720] = 701, - [721] = 692, - [722] = 702, + [714] = 687, + [715] = 715, + [716] = 713, + [717] = 686, + [718] = 697, + [719] = 692, + [720] = 720, + [721] = 684, + [722] = 722, [723] = 723, - [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, + [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, [749] = 749, - [750] = 251, - [751] = 249, - [752] = 246, - [753] = 245, + [750] = 267, + [751] = 289, + [752] = 272, + [753] = 291, [754] = 754, [755] = 755, [756] = 756, [757] = 757, - [758] = 758, - [759] = 756, - [760] = 757, - [761] = 758, - [762] = 758, - [763] = 756, - [764] = 757, + [758] = 757, + [759] = 757, + [760] = 756, + [761] = 756, + [762] = 762, + [763] = 762, + [764] = 762, [765] = 765, [766] = 766, - [767] = 766, - [768] = 766, - [769] = 747, + [767] = 765, + [768] = 765, + [769] = 769, [770] = 770, - [771] = 771, + [771] = 748, [772] = 749, [773] = 773, [774] = 774, - [775] = 236, + [775] = 775, [776] = 776, - [777] = 777, - [778] = 241, + [777] = 236, + [778] = 778, [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 236, - [784] = 784, + [783] = 783, + [784] = 236, [785] = 785, - [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, + [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, [809] = 284, - [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, + [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, [843] = 282, - [844] = 281, + [844] = 247, [845] = 845, [846] = 846, [847] = 847, @@ -2956,7 +2998,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [852] = 852, [853] = 853, [854] = 854, - [855] = 754, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, @@ -2964,16 +3006,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [860] = 860, [861] = 861, [862] = 862, - [863] = 755, + [863] = 863, [864] = 864, - [865] = 865, + [865] = 754, [866] = 866, [867] = 867, [868] = 868, [869] = 869, [870] = 870, [871] = 871, - [872] = 872, + [872] = 755, [873] = 873, [874] = 874, [875] = 875, @@ -2984,8 +3026,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [880] = 880, [881] = 881, [882] = 882, - [883] = 883, - [884] = 794, + [883] = 799, + [884] = 884, [885] = 885, [886] = 886, [887] = 887, @@ -2996,15 +3038,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [892] = 892, [893] = 893, [894] = 894, - [895] = 794, + [895] = 799, [896] = 896, [897] = 897, [898] = 898, - [899] = 899, + [899] = 799, [900] = 900, [901] = 901, [902] = 902, - [903] = 794, + [903] = 903, [904] = 904, [905] = 905, [906] = 906, @@ -3014,10 +3056,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [910] = 910, [911] = 911, [912] = 912, - [913] = 890, + [913] = 911, [914] = 914, [915] = 915, - [916] = 794, + [916] = 916, [917] = 917, [918] = 918, [919] = 919, @@ -3025,17 +3067,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [921] = 921, [922] = 922, [923] = 923, - [924] = 897, + [924] = 924, [925] = 925, [926] = 926, - [927] = 927, + [927] = 925, [928] = 928, [929] = 929, - [930] = 902, - [931] = 931, + [930] = 925, + [931] = 799, [932] = 932, [933] = 933, - [934] = 934, + [934] = 799, [935] = 935, [936] = 936, [937] = 937, @@ -3046,330 +3088,344 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [942] = 942, [943] = 943, [944] = 944, - [945] = 945, - [946] = 897, - [947] = 794, - [948] = 902, + [945] = 906, + [946] = 906, + [947] = 947, + [948] = 911, [949] = 949, [950] = 950, - [951] = 890, + [951] = 951, [952] = 952, [953] = 953, [954] = 954, [955] = 955, [956] = 956, - [957] = 954, + [957] = 957, [958] = 958, [959] = 959, - [960] = 960, + [960] = 957, [961] = 956, [962] = 962, - [963] = 963, + [963] = 957, [964] = 964, [965] = 965, [966] = 966, - [967] = 956, - [968] = 960, + [967] = 967, + [968] = 965, [969] = 969, - [970] = 970, - [971] = 958, - [972] = 963, - [973] = 954, + [970] = 956, + [971] = 965, + [972] = 972, + [973] = 973, [974] = 974, - [975] = 963, - [976] = 964, + [975] = 975, + [976] = 976, [977] = 977, - [978] = 978, + [978] = 957, [979] = 979, - [980] = 963, + [980] = 980, [981] = 981, [982] = 982, - [983] = 966, - [984] = 984, - [985] = 960, - [986] = 956, + [983] = 974, + [984] = 972, + [985] = 972, + [986] = 986, [987] = 987, [988] = 988, - [989] = 989, - [990] = 956, + [989] = 956, + [990] = 957, [991] = 991, - [992] = 964, - [993] = 958, - [994] = 956, - [995] = 954, - [996] = 966, + [992] = 958, + [993] = 962, + [994] = 962, + [995] = 957, + [996] = 958, [997] = 997, - [998] = 963, - [999] = 963, - [1000] = 954, - [1001] = 1001, - [1002] = 954, + [998] = 956, + [999] = 965, + [1000] = 1000, + [1001] = 956, + [1002] = 965, [1003] = 1003, [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 954, - [1008] = 963, - [1009] = 1009, + [1005] = 965, + [1006] = 965, + [1007] = 1007, + [1008] = 974, + [1009] = 956, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 867, + [1014] = 1012, [1015] = 1015, - [1016] = 1016, - [1017] = 1009, + [1016] = 877, + [1017] = 1017, [1018] = 1018, - [1019] = 754, - [1020] = 1020, + [1019] = 1019, + [1020] = 849, [1021] = 1021, - [1022] = 1022, + [1022] = 849, [1023] = 1023, [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 854, + [1027] = 1027, [1028] = 1028, [1029] = 1029, - [1030] = 1030, + [1030] = 877, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 1034, + [1034] = 1015, [1035] = 1035, - [1036] = 867, + [1036] = 1036, [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1021, + [1038] = 1037, + [1039] = 1019, + [1040] = 1023, + [1041] = 877, + [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1045, + [1045] = 1012, [1046] = 1046, - [1047] = 1045, + [1047] = 1047, [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1048, - [1052] = 1049, + [1051] = 1051, + [1052] = 1011, [1053] = 1053, - [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, + [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, [1075] = 1049, - [1076] = 1035, + [1076] = 1018, [1077] = 1077, - [1078] = 1078, - [1079] = 1031, - [1080] = 1026, - [1081] = 1032, - [1082] = 1031, + [1078] = 1056, + [1079] = 1079, + [1080] = 1012, + [1081] = 877, + [1082] = 1082, [1083] = 1083, [1084] = 1084, - [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, + [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, [1098] = 1098, - [1099] = 1048, - [1100] = 755, - [1101] = 1049, - [1102] = 1035, - [1103] = 1031, - [1104] = 854, - [1105] = 1045, - [1106] = 1106, + [1099] = 1023, + [1100] = 1100, + [1101] = 1011, + [1102] = 877, + [1103] = 1012, + [1104] = 849, + [1105] = 1011, + [1106] = 1049, [1107] = 1107, - [1108] = 867, - [1109] = 1109, - [1110] = 1045, + [1108] = 1049, + [1109] = 1011, + [1110] = 1019, [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, + [1112] = 1049, + [1113] = 1019, + [1114] = 1046, + [1115] = 1037, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1116, - [1120] = 1118, - [1121] = 1121, - [1122] = 949, + [1119] = 1015, + [1120] = 1012, + [1121] = 1046, + [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 1117, + [1125] = 1125, [1126] = 1126, [1127] = 1127, - [1128] = 1128, - [1129] = 1127, - [1130] = 953, - [1131] = 286, - [1132] = 259, - [1133] = 1126, - [1134] = 909, + [1128] = 888, + [1129] = 886, + [1130] = 265, + [1131] = 1131, + [1132] = 1132, + [1133] = 255, + [1134] = 1134, [1135] = 1135, - [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, + [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, [1149] = 1149, - [1150] = 1117, + [1150] = 1150, [1151] = 1151, - [1152] = 1126, - [1153] = 1118, - [1154] = 1117, + [1152] = 1131, + [1153] = 1153, + [1154] = 1131, [1155] = 1155, - [1156] = 1127, - [1157] = 1157, - [1158] = 1118, - [1159] = 1116, - [1160] = 1116, - [1161] = 1126, - [1162] = 1124, + [1156] = 1134, + [1157] = 1135, + [1158] = 1158, + [1159] = 1159, + [1160] = 1127, + [1161] = 1125, + [1162] = 1162, [1163] = 1163, [1164] = 1164, - [1165] = 1165, - [1166] = 1117, - [1167] = 1167, - [1168] = 1127, + [1165] = 1124, + [1166] = 1166, + [1167] = 1124, + [1168] = 1131, [1169] = 1169, - [1170] = 1170, + [1170] = 1135, [1171] = 1171, [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1117, + [1173] = 1124, + [1174] = 1135, + [1175] = 1125, [1176] = 1176, - [1177] = 1177, + [1177] = 1127, [1178] = 1178, [1179] = 1179, - [1180] = 1127, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1183, + [1180] = 1125, + [1181] = 1125, + [1182] = 1127, + [1183] = 1127, + [1184] = 1184, [1185] = 1185, - [1186] = 1183, + [1186] = 1186, [1187] = 1187, - [1188] = 1181, - [1189] = 1187, + [1188] = 1188, + [1189] = 1189, [1190] = 1190, [1191] = 1191, - [1192] = 1192, + [1192] = 1190, [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1191, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, + [1196] = 1196, + [1197] = 1191, + [1198] = 1193, + [1199] = 1190, [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1203, - [1204] = 1191, + [1203] = 1191, + [1204] = 1204, [1205] = 1205, - [1206] = 1206, + [1206] = 1188, [1207] = 1207, - [1208] = 1200, - [1209] = 1209, + [1208] = 1208, + [1209] = 1204, [1210] = 1210, [1211] = 1211, [1212] = 1212, - [1213] = 1200, - [1214] = 1210, + [1213] = 1193, + [1214] = 1214, [1215] = 1215, - [1216] = 1216, + [1216] = 1214, [1217] = 1217, [1218] = 1218, - [1219] = 1210, - [1220] = 1206, + [1219] = 1188, + [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 1223, - [1224] = 1187, - [1225] = 1225, - [1226] = 1207, - [1227] = 1200, + [1223] = 1214, + [1224] = 1202, + [1225] = 1214, + [1226] = 1226, + [1227] = 1214, [1228] = 1228, [1229] = 1229, - [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, + [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, [1244] = 1244, - [1245] = 1187, - [1246] = 1183, + [1245] = 1245, + [1246] = 1246, [1247] = 1247, [1248] = 1248, [1249] = 1249, - [1250] = 1249, - [1251] = 1191, + [1250] = 1193, + [1251] = 1190, [1252] = 1252, - [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, + [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, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -4933,967 +4989,1118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - 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 (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 (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); + lookahead == ' ') SKIP(73) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); case 1: - 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 == '\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 == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) END_STATE(); case 2: - 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 == '\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 == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2) END_STATE(); case 3: - if (lookahead == '\n') SKIP(8) - if (lookahead == '"') ADVANCE(137); - if (lookahead == '/') ADVANCE(138); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '\n') SKIP(9) + if (lookahead == '"') ADVANCE(152); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '\\') ADVANCE(35); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(141); - if (lookahead != 0) ADVANCE(142); + lookahead == ' ') ADVANCE(155); + if (lookahead != 0) ADVANCE(156); END_STATE(); case 4: - 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) + if (lookahead == ' ') ADVANCE(171); + if (lookahead == ':') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 5: - 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 == '!') 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 == '\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(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 == '!') 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 == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) END_STATE(); case 7: - 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 == '!') 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 == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) END_STATE(); case 8: - if (lookahead == '"') ADVANCE(137); - if (lookahead == '/') ADVANCE(10); + 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 == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) END_STATE(); case 9: - if (lookahead == '\'') ADVANCE(156); + if (lookahead == '"') ADVANCE(152); + if (lookahead == '/') ADVANCE(11); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) END_STATE(); case 10: - if (lookahead == '*') ADVANCE(12); - if (lookahead == '/') ADVANCE(158); + if (lookahead == '\'') ADVANCE(170); END_STATE(); case 11: - if (lookahead == '*') ADVANCE(11); - if (lookahead == '/') ADVANCE(157); - if (lookahead != 0) ADVANCE(12); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '/') ADVANCE(172); END_STATE(); case 12: - if (lookahead == '*') ADVANCE(11); - if (lookahead != 0) ADVANCE(12); + if (lookahead == '*') ADVANCE(184); + if (lookahead == '/') ADVANCE(14); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(12); + if (lookahead != 0) ADVANCE(13); END_STATE(); case 13: - if (lookahead == '-') ADVANCE(83); + if (lookahead == '*') ADVANCE(184); + if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '/') ADVANCE(174); + if (lookahead != 0) ADVANCE(13); END_STATE(); case 15: - 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); + if (lookahead == '-') ADVANCE(98); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(74); + if (lookahead == '.') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); END_STATE(); case 17: - if (lookahead == '.') ADVANCE(42); - if (lookahead == '_') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); + 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); END_STATE(); case 18: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '.') ADVANCE(89); END_STATE(); case 19: - if (lookahead == '=') ADVANCE(84); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '_') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); case 20: - if (lookahead == '=') ADVANCE(123); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'e') ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 21: - 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); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'e') ADVANCE(28); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 22: - if (lookahead == '\\') ADVANCE(34); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(9); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'i') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 23: - if (lookahead == '_') ADVANCE(29); - if (lookahead == '0' || - lookahead == '1') ADVANCE(150); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'n') ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 24: - if (lookahead == '_') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'n') ADVANCE(20); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 25: - if (lookahead == '`') ADVANCE(136); - if (lookahead != 0) ADVANCE(25); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'o') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 26: - if (lookahead == '+' || - lookahead == '-') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); + 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); END_STATE(); case 27: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(26); - if (lookahead == '_') ADVANCE(42); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'r') ADVANCE(29); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(27); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 28: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(26); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'r') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(27); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 29: - if (lookahead == '0' || - lookahead == '1') ADVANCE(150); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 't') ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 30: - if (lookahead == '8' || - lookahead == '9') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(147); + if (lookahead == ':') ADVANCE(71); + if (lookahead == 'x') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 31: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(9); + if (lookahead == ':') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 32: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); + if (lookahead == '=') ADVANCE(139); END_STATE(); case 33: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(31); + if (lookahead == '=') ADVANCE(99); END_STATE(); case 34: - 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); + if (lookahead == '=') ADVANCE(138); END_STATE(); case 35: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(148); + 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); END_STATE(); case 36: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); + if (lookahead == '\\') ADVANCE(48); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(10); END_STATE(); case 37: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(15); + if (lookahead == '_') ADVANCE(43); + if (lookahead == '0' || + lookahead == '1') ADVANCE(164); END_STATE(); case 38: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); + if (lookahead == '_') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(165); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(9); + if (lookahead == '`') ADVANCE(151); + if (lookahead != 0) ADVANCE(39); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); + 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(149); + ('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(27); + ('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); + 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(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(10); END_STATE(); - case 44: + case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); END_STATE(); - case 45: + case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); - case 46: + case 56: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); - case 47: + case 57: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); - case 48: + case 58: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); - case 49: + case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); END_STATE(); - case 50: + case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); END_STATE(); - case 51: + case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); - case 52: + case 62: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); - case 53: + case 63: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); - case 54: + case 64: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); END_STATE(); - case 55: + case 65: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); - case 56: + case 66: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); END_STATE(); - 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); + case 67: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + END_STATE(); + case 68: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + END_STATE(); + case 69: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + END_STATE(); + case 70: + 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); + 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); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); + lookahead == ' ') SKIP(72) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); - 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); + 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); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); + lookahead == ' ') SKIP(73) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); - 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); + 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); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(148); + lookahead == ' ') SKIP(74) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); - case 60: + case 75: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 61: + case 76: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(61); + if (lookahead == '\n') ADVANCE(76); END_STATE(); - case 62: + case 77: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 63: + case 78: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 64: + case 79: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); + if (lookahead == '.') ADVANCE(18); END_STATE(); - case 65: + case 80: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); + if (lookahead == '.') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); END_STATE(); - case 66: + case 81: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); END_STATE(); - case 67: + case 82: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 68: + case 83: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 69: + case 84: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 70: + case 85: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 71: + case 86: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(138); END_STATE(); - case 72: + case 87: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 73: + case 88: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 74: + case 89: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 75: + case 90: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 76: + case 91: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(87); + if (lookahead == '=') ADVANCE(102); END_STATE(); - case 77: + case 92: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 78: + case 93: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 79: + case 94: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 80: + case 95: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '|') ADVANCE(134); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '|') ADVANCE(149); END_STATE(); - case 81: + case 96: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(134); + if (lookahead == '|') ADVANCE(149); END_STATE(); - case 82: + case 97: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 83: + case 98: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 84: + case 99: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 85: + case 100: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 86: + case 101: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 87: + case 102: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 88: + case 103: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 89: + case 104: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 90: + case 105: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 91: + case 106: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 92: + case 107: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 93: + case 108: ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); - case 94: + case 109: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 95: + case 110: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 96: + case 111: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 97: + case 112: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 98: + case 113: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 99: + case 114: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(84); + if (lookahead == '=') ADVANCE(99); END_STATE(); - case 100: + case 115: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 101: + case 116: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(85); - if (lookahead == '=') ADVANCE(94); + if (lookahead == '+') ADVANCE(100); + if (lookahead == '=') ADVANCE(109); END_STATE(); - case 102: + case 117: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(94); + if (lookahead == '=') ADVANCE(109); END_STATE(); - case 103: + case 118: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 104: + case 119: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(86); - if (lookahead == '=') ADVANCE(95); + if (lookahead == '-') ADVANCE(101); + if (lookahead == '=') ADVANCE(110); END_STATE(); - case 105: + case 120: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(95); + if (lookahead == '=') ADVANCE(110); END_STATE(); - case 106: + case 121: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 107: + case 122: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(139); END_STATE(); - case 108: + case 123: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 109: + case 124: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(97); + if (lookahead == '=') ADVANCE(112); END_STATE(); - case 110: + case 125: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 111: + case 126: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(133); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '^') ADVANCE(122); + if (lookahead == '&') ADVANCE(148); + if (lookahead == '=') ADVANCE(107); + if (lookahead == '^') ADVANCE(137); END_STATE(); - case 112: + case 127: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(133); - if (lookahead == '^') ADVANCE(121); + if (lookahead == '&') ADVANCE(148); + if (lookahead == '^') ADVANCE(136); END_STATE(); - case 113: + case 128: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(12); - if (lookahead == '/') ADVANCE(158); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '/') ADVANCE(172); END_STATE(); - case 114: + case 129: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(12); - if (lookahead == '/') ADVANCE(158); - if (lookahead == '=') ADVANCE(88); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '/') ADVANCE(172); + if (lookahead == '=') ADVANCE(103); END_STATE(); - case 115: + case 130: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 116: + case 131: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(89); + if (lookahead == '=') ADVANCE(104); END_STATE(); - case 117: + case 132: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 118: + case 133: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(90); + if (lookahead == '=') ADVANCE(105); END_STATE(); - case 119: + case 134: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 120: + case 135: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(91); + if (lookahead == '=') ADVANCE(106); END_STATE(); - case 121: + case 136: ACCEPT_TOKEN(anon_sym_AMP_CARET); END_STATE(); - case 122: + case 137: ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(93); + if (lookahead == '=') ADVANCE(108); END_STATE(); - case 123: + case 138: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 124: + case 139: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 125: + case 140: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '<') ADVANCE(118); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '-') ADVANCE(98); + if (lookahead == '<') ADVANCE(133); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 126: + case 141: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '<') ADVANCE(117); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '-') ADVANCE(98); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 127: + case 142: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(118); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '<') ADVANCE(133); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 128: + case 143: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(117); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '<') ADVANCE(132); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 129: + case 144: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 130: + case 145: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '>') ADVANCE(120); + if (lookahead == '=') ADVANCE(147); + if (lookahead == '>') ADVANCE(135); END_STATE(); - case 131: + case 146: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '>') ADVANCE(119); + if (lookahead == '=') ADVANCE(147); + if (lookahead == '>') ADVANCE(134); END_STATE(); - case 132: + case 147: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 133: + case 148: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 134: + case 149: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 135: + case 150: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(135); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(150); END_STATE(); - case 136: + case 151: ACCEPT_TOKEN(sym_raw_string_literal); END_STATE(); - case 137: + case 152: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 138: - ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(142); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(142); - END_STATE(); - case 139: + case 153: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(142); + if (lookahead == ' ') ADVANCE(156); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(140); + lookahead != '\\') ADVANCE(156); END_STATE(); - case 140: + case 154: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == '*') ADVANCE(139); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '/') ADVANCE(153); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(140); + lookahead != '\\') ADVANCE(156); END_STATE(); - case 141: + case 155: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); - if (lookahead == '/') ADVANCE(138); + if (lookahead == '/') ADVANCE(154); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(141); + lookahead == ' ') ADVANCE(155); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(142); + lookahead != '\\') ADVANCE(156); END_STATE(); - case 142: + case 156: ACCEPT_TOKEN(sym__interpreted_string_literal_basic_content); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(142); + lookahead != '\\') ADVANCE(156); END_STATE(); - case 143: + case 157: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 144: + case 158: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(157); END_STATE(); - case 145: + case 159: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(158); END_STATE(); - case 146: + case 160: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(154); + if (lookahead == '.') ADVANCE(168); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(23); + lookahead == 'b') ADVANCE(37); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(26); + lookahead == 'e') ADVANCE(40); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(24); + lookahead == 'o') ADVANCE(38); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(17); - if (lookahead == '_') ADVANCE(30); - if (lookahead == 'i') ADVANCE(155); + lookahead == 'x') ADVANCE(19); + if (lookahead == '_') ADVANCE(44); + if (lookahead == 'i') ADVANCE(169); if (lookahead == '8' || - lookahead == '9') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(147); + lookahead == '9') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); END_STATE(); - case 147: + case 161: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(154); + if (lookahead == '.') ADVANCE(168); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(26); - if (lookahead == '_') ADVANCE(30); - if (lookahead == 'i') ADVANCE(155); + lookahead == 'e') ADVANCE(40); + if (lookahead == '_') ADVANCE(44); + if (lookahead == 'i') ADVANCE(169); if (lookahead == '8' || - lookahead == '9') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(147); + lookahead == '9') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(161); END_STATE(); - case 148: + case 162: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(154); + if (lookahead == '.') ADVANCE(168); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(26); - if (lookahead == '_') ADVANCE(35); - if (lookahead == 'i') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(148); + lookahead == 'e') ADVANCE(40); + if (lookahead == '_') ADVANCE(49); + if (lookahead == 'i') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); - case 149: + case 163: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(28); + if (lookahead == '.') ADVANCE(42); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(26); - if (lookahead == '_') ADVANCE(41); - if (lookahead == 'i') ADVANCE(155); + lookahead == 'p') ADVANCE(40); + if (lookahead == '_') ADVANCE(55); + if (lookahead == 'i') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); - case 150: + case 164: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(29); - if (lookahead == 'i') ADVANCE(155); + if (lookahead == '_') ADVANCE(43); + if (lookahead == 'i') ADVANCE(169); if (lookahead == '0' || - lookahead == '1') ADVANCE(150); + lookahead == '1') ADVANCE(164); END_STATE(); - case 151: + case 165: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(32); - if (lookahead == 'i') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(151); + if (lookahead == '_') ADVANCE(46); + if (lookahead == 'i') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(165); END_STATE(); - case 152: + case 166: ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(38); - if (lookahead == 'i') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(152); + if (lookahead == '_') ADVANCE(52); + if (lookahead == 'i') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); - case 153: + case 167: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(26); - if (lookahead == '_') ADVANCE(36); - if (lookahead == 'i') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); + lookahead == 'e') ADVANCE(40); + if (lookahead == '_') ADVANCE(50); + if (lookahead == 'i') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); END_STATE(); - case 154: + case 168: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(26); - if (lookahead == 'i') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(153); + lookahead == 'e') ADVANCE(40); + if (lookahead == 'i') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(167); END_STATE(); - case 155: + case 169: ACCEPT_TOKEN(sym_imaginary_literal); END_STATE(); - case 156: + case 170: ACCEPT_TOKEN(sym_rune_literal); END_STATE(); - case 157: - ACCEPT_TOKEN(sym_comment); + case 171: + ACCEPT_TOKEN(sym_directive); END_STATE(); - case 158: - ACCEPT_TOKEN(sym_comment); + 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); + END_STATE(); + case 184: + ACCEPT_TOKEN(aux_sym_comment_token2); + if (lookahead == '*') ADVANCE(184); if (lookahead != 0 && - lookahead != '\n') ADVANCE(158); + lookahead != '/') ADVANCE(13); END_STATE(); default: return false; @@ -6333,311 +6540,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 = 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}, + [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}, [294] = {.lex_state = 1}, [295] = {.lex_state = 1}, [296] = {.lex_state = 1}, [297] = {.lex_state = 1}, [298] = {.lex_state = 1}, - [299] = {.lex_state = 59}, - [300] = {.lex_state = 1}, + [299] = {.lex_state = 1}, + [300] = {.lex_state = 74}, [301] = {.lex_state = 1}, - [302] = {.lex_state = 4}, + [302] = {.lex_state = 5}, [303] = {.lex_state = 1}, - [304] = {.lex_state = 1}, - [305] = {.lex_state = 4}, + [304] = {.lex_state = 5}, + [305] = {.lex_state = 1}, [306] = {.lex_state = 1}, [307] = {.lex_state = 1}, [308] = {.lex_state = 1}, @@ -6656,7 +6863,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [321] = {.lex_state = 1}, [322] = {.lex_state = 1}, [323] = {.lex_state = 1}, - [324] = {.lex_state = 4}, + [324] = {.lex_state = 5}, [325] = {.lex_state = 1}, [326] = {.lex_state = 1}, [327] = {.lex_state = 1}, @@ -6671,194 +6878,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [336] = {.lex_state = 1}, [337] = {.lex_state = 1}, [338] = {.lex_state = 1}, - [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}, + [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}, [464] = {.lex_state = 2}, - [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}, + [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}, [473] = {.lex_state = 2}, - [474] = {.lex_state = 7}, - [475] = {.lex_state = 57}, - [476] = {.lex_state = 57}, - [477] = {.lex_state = 2}, + [474] = {.lex_state = 2}, + [475] = {.lex_state = 2}, + [476] = {.lex_state = 2}, + [477] = {.lex_state = 72}, [478] = {.lex_state = 2}, - [479] = {.lex_state = 57}, + [479] = {.lex_state = 72}, [480] = {.lex_state = 2}, [481] = {.lex_state = 2}, - [482] = {.lex_state = 7}, - [483] = {.lex_state = 7}, - [484] = {.lex_state = 6}, + [482] = {.lex_state = 8}, + [483] = {.lex_state = 2}, + [484] = {.lex_state = 7}, [485] = {.lex_state = 2}, [486] = {.lex_state = 2}, - [487] = {.lex_state = 7}, - [488] = {.lex_state = 2}, - [489] = {.lex_state = 2}, - [490] = {.lex_state = 7}, - [491] = {.lex_state = 7}, - [492] = {.lex_state = 7}, + [487] = {.lex_state = 8}, + [488] = {.lex_state = 8}, + [489] = {.lex_state = 8}, + [490] = {.lex_state = 8}, + [491] = {.lex_state = 2}, + [492] = {.lex_state = 8}, [493] = {.lex_state = 2}, - [494] = {.lex_state = 6}, - [495] = {.lex_state = 2}, + [494] = {.lex_state = 2}, + [495] = {.lex_state = 7}, [496] = {.lex_state = 2}, - [497] = {.lex_state = 0}, + [497] = {.lex_state = 2}, [498] = {.lex_state = 2}, [499] = {.lex_state = 2}, [500] = {.lex_state = 2}, [501] = {.lex_state = 2}, [502] = {.lex_state = 2}, - [503] = {.lex_state = 6}, - [504] = {.lex_state = 0}, + [503] = {.lex_state = 2}, + [504] = {.lex_state = 2}, [505] = {.lex_state = 2}, - [506] = {.lex_state = 6}, - [507] = {.lex_state = 2}, - [508] = {.lex_state = 2}, + [506] = {.lex_state = 2}, + [507] = {.lex_state = 7}, + [508] = {.lex_state = 7}, [509] = {.lex_state = 2}, [510] = {.lex_state = 2}, - [511] = {.lex_state = 6}, - [512] = {.lex_state = 6}, - [513] = {.lex_state = 2}, - [514] = {.lex_state = 6}, - [515] = {.lex_state = 2}, - [516] = {.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}, [517] = {.lex_state = 2}, - [518] = {.lex_state = 6}, - [519] = {.lex_state = 2}, + [518] = {.lex_state = 7}, + [519] = {.lex_state = 8}, [520] = {.lex_state = 2}, [521] = {.lex_state = 2}, - [522] = {.lex_state = 6}, - [523] = {.lex_state = 2}, - [524] = {.lex_state = 6}, - [525] = {.lex_state = 2}, - [526] = {.lex_state = 7}, + [522] = {.lex_state = 0}, + [523] = {.lex_state = 7}, + [524] = {.lex_state = 2}, + [525] = {.lex_state = 7}, + [526] = {.lex_state = 2}, [527] = {.lex_state = 2}, [528] = {.lex_state = 2}, [529] = {.lex_state = 2}, @@ -6867,132 +7074,132 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [532] = {.lex_state = 2}, [533] = {.lex_state = 2}, [534] = {.lex_state = 2}, - [535] = {.lex_state = 6}, + [535] = {.lex_state = 0}, [536] = {.lex_state = 2}, [537] = {.lex_state = 2}, [538] = {.lex_state = 2}, [539] = {.lex_state = 2}, - [540] = {.lex_state = 0}, - [541] = {.lex_state = 7}, - [542] = {.lex_state = 7}, + [540] = {.lex_state = 8}, + [541] = {.lex_state = 8}, + [542] = {.lex_state = 8}, [543] = {.lex_state = 7}, [544] = {.lex_state = 7}, [545] = {.lex_state = 7}, - [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}, + [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}, [559] = {.lex_state = 7}, - [560] = {.lex_state = 7}, - [561] = {.lex_state = 7}, + [560] = {.lex_state = 8}, + [561] = {.lex_state = 0}, [562] = {.lex_state = 7}, - [563] = {.lex_state = 6}, + [563] = {.lex_state = 8}, [564] = {.lex_state = 7}, - [565] = {.lex_state = 6}, - [566] = {.lex_state = 6}, - [567] = {.lex_state = 6}, - [568] = {.lex_state = 6}, - [569] = {.lex_state = 7}, + [565] = {.lex_state = 8}, + [566] = {.lex_state = 8}, + [567] = {.lex_state = 8}, + [568] = {.lex_state = 8}, + [569] = {.lex_state = 8}, [570] = {.lex_state = 7}, [571] = {.lex_state = 7}, - [572] = {.lex_state = 7}, + [572] = {.lex_state = 0}, [573] = {.lex_state = 7}, - [574] = {.lex_state = 7}, - [575] = {.lex_state = 6}, - [576] = {.lex_state = 7}, - [577] = {.lex_state = 7}, - [578] = {.lex_state = 7}, - [579] = {.lex_state = 0}, + [574] = {.lex_state = 0}, + [575] = {.lex_state = 7}, + [576] = {.lex_state = 8}, + [577] = {.lex_state = 8}, + [578] = {.lex_state = 8}, + [579] = {.lex_state = 8}, [580] = {.lex_state = 7}, [581] = {.lex_state = 0}, - [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}, + [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}, [594] = {.lex_state = 0}, - [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}, + [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}, [659] = {.lex_state = 0}, - [660] = {.lex_state = 6}, + [660] = {.lex_state = 7}, [661] = {.lex_state = 0}, [662] = {.lex_state = 0}, [663] = {.lex_state = 0}, @@ -7076,12 +7283,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [741] = {.lex_state = 0}, [742] = {.lex_state = 0}, [743] = {.lex_state = 0}, - [744] = {.lex_state = 57}, - [745] = {.lex_state = 57}, - [746] = {.lex_state = 57}, - [747] = {.lex_state = 57}, - [748] = {.lex_state = 57}, - [749] = {.lex_state = 57}, + [744] = {.lex_state = 72}, + [745] = {.lex_state = 72}, + [746] = {.lex_state = 72}, + [747] = {.lex_state = 72}, + [748] = {.lex_state = 72}, + [749] = {.lex_state = 72}, [750] = {.lex_state = 0}, [751] = {.lex_state = 0}, [752] = {.lex_state = 0}, @@ -7107,10 +7314,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [772] = {.lex_state = 0}, [773] = {.lex_state = 0}, [774] = {.lex_state = 0}, - [775] = {.lex_state = 57}, + [775] = {.lex_state = 0}, [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 57}, + [777] = {.lex_state = 72}, + [778] = {.lex_state = 0}, [779] = {.lex_state = 0}, [780] = {.lex_state = 0}, [781] = {.lex_state = 0}, @@ -7118,56 +7325,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [783] = {.lex_state = 0}, [784] = {.lex_state = 0}, [785] = {.lex_state = 0}, - [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}, + [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}, [817] = {.lex_state = 0}, [818] = {.lex_state = 0}, [819] = {.lex_state = 0}, [820] = {.lex_state = 0}, [821] = {.lex_state = 0}, - [822] = {.lex_state = 57}, + [822] = {.lex_state = 0}, [823] = {.lex_state = 0}, [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, - [827] = {.lex_state = 57}, + [827] = {.lex_state = 0}, [828] = {.lex_state = 0}, [829] = {.lex_state = 0}, - [830] = {.lex_state = 0}, + [830] = {.lex_state = 72}, [831] = {.lex_state = 0}, [832] = {.lex_state = 0}, - [833] = {.lex_state = 57}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 57}, + [833] = {.lex_state = 0}, + [834] = {.lex_state = 72}, + [835] = {.lex_state = 72}, [836] = {.lex_state = 0}, [837] = {.lex_state = 0}, [838] = {.lex_state = 0}, @@ -7177,172 +7384,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, + [845] = {.lex_state = 72}, [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 57}, - [849] = {.lex_state = 57}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 0}, - [852] = {.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}, [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, + [854] = {.lex_state = 72}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, - [859] = {.lex_state = 57}, + [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 57}, - [862] = {.lex_state = 0}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 72}, [863] = {.lex_state = 0}, [864] = {.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}, + [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}, [879] = {.lex_state = 0}, - [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}, + [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}, [895] = {.lex_state = 0}, - [896] = {.lex_state = 57}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 57}, + [896] = {.lex_state = 72}, + [897] = {.lex_state = 72}, + [898] = {.lex_state = 72}, [899] = {.lex_state = 0}, - [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}, + [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}, [913] = {.lex_state = 0}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 57}, + [914] = {.lex_state = 72}, + [915] = {.lex_state = 72}, [916] = {.lex_state = 0}, - [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}, + [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}, [930] = {.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}, + [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}, [946] = {.lex_state = 0}, - [947] = {.lex_state = 0}, + [947] = {.lex_state = 72}, [948] = {.lex_state = 0}, - [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}, + [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}, [959] = {.lex_state = 0}, - [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}, + [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}, [967] = {.lex_state = 0}, - [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}, + [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}, [977] = {.lex_state = 0}, - [978] = {.lex_state = 57}, + [978] = {.lex_state = 0}, [979] = {.lex_state = 0}, - [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}, + [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}, [990] = {.lex_state = 0}, - [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}, + [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}, [998] = {.lex_state = 3}, [999] = {.lex_state = 3}, - [1000] = {.lex_state = 3}, - [1001] = {.lex_state = 57}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 3}, [1002] = {.lex_state = 3}, [1003] = {.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}, + [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}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, [1013] = {.lex_state = 0}, @@ -7360,79 +7567,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1025] = {.lex_state = 0}, [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 57}, + [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 57}, - [1034] = {.lex_state = 57}, - [1035] = {.lex_state = 0}, + [1033] = {.lex_state = 72}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 72}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 57}, + [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 57}, + [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 0}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0}, + [1047] = {.lex_state = 72}, + [1048] = {.lex_state = 72}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 0}, + [1050] = {.lex_state = 72}, + [1051] = {.lex_state = 72}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, + [1054] = {.lex_state = 72}, + [1055] = {.lex_state = 72}, [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, + [1057] = {.lex_state = 72}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, + [1063] = {.lex_state = 72}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, + [1067] = {.lex_state = 3}, + [1068] = {.lex_state = 72}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, + [1072] = {.lex_state = 72}, [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 57}, - [1078] = {.lex_state = 57}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, [1081] = {.lex_state = 0}, [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, + [1083] = {.lex_state = 72}, [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 = 57}, + [1090] = {.lex_state = 0}, [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 = 57}, - [1098] = {.lex_state = 57}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, + [1100] = {.lex_state = 72}, [1101] = {.lex_state = 0}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, @@ -7441,9 +7648,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 57}, + [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 57}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, @@ -7462,32 +7669,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 57}, - [1132] = {.lex_state = 57}, - [1133] = {.lex_state = 0}, + [1130] = {.lex_state = 72}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0}, + [1133] = {.lex_state = 72}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 57}, - [1140] = {.lex_state = 57}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 72}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 57}, + [1142] = {.lex_state = 0}, [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 = 0}, + [1149] = {.lex_state = 72}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 57}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, @@ -7495,30 +7702,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, + [1163] = {.lex_state = 72}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 57}, + [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 72}, [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 = 57}, + [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, + [1184] = {.lex_state = 72}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, + [1186] = {.lex_state = 72}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, @@ -7537,7 +7744,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, + [1205] = {.lex_state = 5}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, @@ -7579,7 +7786,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, + [1247] = {.lex_state = 176}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, @@ -7601,10 +7808,25 @@ 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), @@ -7694,2222 +7916,2797 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), [sym_iota] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_SLASH2] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), }, [1] = { - [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_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_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] = 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), + [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), [aux_sym_source_file_repeat1] = STATE(2), - [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), + [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), }, [2] = { - [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_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_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] = 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), + [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), [aux_sym_source_file_repeat1] = STATE(3), - [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), + [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), }, [3] = { - [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_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_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] = 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), + [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), [aux_sym_source_file_repeat1] = STATE(3), - [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), + [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), }, [4] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), [anon_sym_RBRACE] = ACTIONS(184), - [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_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(186), [anon_sym_default] = ACTIONS(186), - [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), + [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), }, - [6] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [5] = { + [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(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), + [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), [anon_sym_RBRACE] = ACTIONS(188), - [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_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(190), [anon_sym_default] = ACTIONS(190), - [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), + [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), }, - [7] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [6] = { + [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(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_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_empty_labeled_statement] = STATE(1024), - [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), + [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), [anon_sym_RBRACE] = ACTIONS(192), - [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_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(194), [anon_sym_default] = ACTIONS(194), - [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), + [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), }, - [8] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [7] = { + [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(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), + [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), [anon_sym_RBRACE] = ACTIONS(196), - [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_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(198), [anon_sym_default] = ACTIONS(198), - [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), + [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), }, - [9] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [8] = { + [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(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), + [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), [anon_sym_RBRACE] = ACTIONS(200), - [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_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(202), [anon_sym_default] = ACTIONS(202), - [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), + [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(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [9] = { + [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(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), + [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), [anon_sym_RBRACE] = ACTIONS(204), - [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_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(206), [anon_sym_default] = ACTIONS(206), - [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), + [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), }, - [11] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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(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), + [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), + }, + [11] = { + [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_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), }, [12] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [13] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [14] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [15] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [16] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [17] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [18] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [19] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [20] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), + [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(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), + [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), }, [21] = { - [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_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] = STATE(302), - [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), + [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), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, + [0] = 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, + 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, - ACTIONS(23), 1, + 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, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(276), 1, + anon_sym_STAR, + ACTIONS(278), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, anon_sym_interface, - ACTIONS(35), 1, + 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, + anon_sym_map, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, ACTIONS(230), 1, + sym_identifier, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, - anon_sym_DQUOTE, ACTIONS(250), 1, - anon_sym_LBRACE, - STATE(324), 1, + anon_sym_DQUOTE, + STATE(29), 1, + sym_comment, + STATE(304), 1, sym__expression, - STATE(765), 1, + STATE(768), 1, sym_expression_list, - STATE(947), 1, + STATE(899), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1142), 1, sym_implicit_length_array_type, - STATE(1193), 1, - sym__type_switch_header, - STATE(1194), 1, + STATE(1212), 1, sym__simple_statement, - ACTIONS(240), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, + STATE(1144), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, sym_assignment_statement, sym_short_var_declaration, - ACTIONS(248), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -9922,84 +10719,172 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [120] = 27, + [337] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, + ACTIONS(276), 1, + anon_sym_STAR, + ACTIONS(278), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, anon_sym_interface, - ACTIONS(35), 1, + 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, + anon_sym_map, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(302), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(304), 1, + anon_sym_LF, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(312), 1, + anon_sym_LBRACK, + ACTIONS(314), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(316), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, - ACTIONS(252), 1, - anon_sym_LBRACE, - STATE(343), 1, + STATE(31), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(766), 1, - sym_expression_list, - STATE(947), 1, + STATE(931), 1, sym_qualified_type, - STATE(1159), 1, + STATE(941), 1, + sym_expression_list, + STATE(1170), 1, sym_implicit_length_array_type, - STATE(1199), 1, - sym__simple_statement, - ACTIONS(240), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(816), 4, + ACTIONS(306), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(320), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, - sym_send_statement, - sym_inc_statement, - sym_dec_statement, - sym_assignment_statement, - sym_short_var_declaration, - ACTIONS(248), 6, + ACTIONS(322), 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(362), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10012,84 +10897,173 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [237] = 27, + [564] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, + ACTIONS(342), 1, + anon_sym_STAR, + ACTIONS(345), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(348), 1, anon_sym_interface, - ACTIONS(35), 1, + 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, + 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(226), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(364), 1, + anon_sym_COMMA, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(370), 1, + anon_sym_LBRACE, + ACTIONS(372), 1, + anon_sym_RBRACE, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(254), 1, - anon_sym_LBRACE, - STATE(343), 1, + STATE(33), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(766), 1, - sym_expression_list, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(957), 1, + sym_literal_element, + STATE(1112), 1, + sym_keyed_element, + STATE(1118), 1, + sym_literal_value, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1205), 1, - sym__simple_statement, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, - sym_send_statement, - sym_inc_statement, - sym_dec_statement, - sym_assignment_statement, - sym_short_var_declaration, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10102,84 +11076,90 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [354] = 27, + [794] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(370), 1, + anon_sym_LBRACE, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(256), 1, - anon_sym_LBRACE, - STATE(343), 1, + ACTIONS(386), 1, + anon_sym_COMMA, + ACTIONS(388), 1, + anon_sym_RBRACE, + STATE(34), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(766), 1, - sym_expression_list, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(990), 1, + sym_literal_element, + STATE(1049), 1, + sym_keyed_element, + STATE(1118), 1, + sym_literal_value, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1211), 1, - sym__simple_statement, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, - sym_send_statement, - sym_inc_statement, - sym_dec_statement, - sym_assignment_statement, - sym_short_var_declaration, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10192,84 +11172,90 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [471] = 27, + [922] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(370), 1, + anon_sym_LBRACE, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(258), 1, - anon_sym_LBRACE, - STATE(343), 1, + ACTIONS(390), 1, + anon_sym_COMMA, + ACTIONS(392), 1, + anon_sym_RBRACE, + STATE(35), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(766), 1, - sym_expression_list, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(995), 1, + sym_literal_element, + STATE(1061), 1, + sym_keyed_element, + STATE(1118), 1, + sym_literal_value, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1216), 1, - sym__simple_statement, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, - sym_send_statement, - sym_inc_statement, - sym_dec_statement, - sym_assignment_statement, - sym_short_var_declaration, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10282,242 +11268,186 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [588] = 18, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(266), 1, - anon_sym_LPAREN, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(270), 1, + [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(272), 1, - anon_sym_STAR, - ACTIONS(274), 1, + ACTIONS(33), 1, anon_sym_struct, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(284), 1, - anon_sym_LT_DASH, - ACTIONS(286), 1, - sym_comment, - STATE(241), 1, - sym_qualified_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, - 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(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, - 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, + ACTIONS(360), 1, sym_identifier, - ACTIONS(266), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(268), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(270), 1, - anon_sym_LBRACK, - ACTIONS(272), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(274), 1, - anon_sym_struct, - ACTIONS(276), 1, + ACTIONS(370), 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, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(286), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(394), 1, + anon_sym_COMMA, + ACTIONS(396), 1, + anon_sym_RBRACE, + STATE(36), 1, sym_comment, - STATE(241), 1, + STATE(556), 1, + sym__expression, + STATE(799), 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, + 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, sym__simple_type, - STATE(253), 9, - sym_generic_type, + ACTIONS(380), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(823), 4, 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(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, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, + 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_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [784] = 26, + 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, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(370), 1, + anon_sym_LBRACE, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(305), 1, + ACTIONS(398), 1, + anon_sym_COMMA, + ACTIONS(400), 1, + anon_sym_RBRACE, + STATE(37), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(768), 1, - sym_expression_list, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(978), 1, + sym_literal_element, + STATE(1075), 1, + sym_keyed_element, + STATE(1118), 1, + sym_literal_value, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1202), 1, - sym__simple_statement, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, - sym_send_statement, - sym_inc_statement, - sym_dec_statement, - sym_assignment_statement, - sym_short_var_declaration, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10530,164 +11460,90 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [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, + [1306] = 32, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(300), 1, - anon_sym_COMMA, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(308), 1, - anon_sym_RBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(589), 1, + ACTIONS(402), 1, + anon_sym_COMMA, + ACTIONS(404), 1, + anon_sym_RBRACE, + STATE(38), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(967), 1, + STATE(963), 1, sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1092), 1, + STATE(1106), 1, sym_keyed_element, - STATE(1138), 1, + STATE(1118), 1, + sym_literal_value, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10700,84 +11556,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1115] = 29, + [1434] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(322), 1, - anon_sym_COMMA, - ACTIONS(324), 1, + ACTIONS(406), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(39), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(986), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1102), 1, - sym_keyed_element, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1169), 1, + sym_keyed_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10790,84 +11650,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1234] = 29, + [1559] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(326), 1, - anon_sym_COMMA, - ACTIONS(328), 1, + ACTIONS(408), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(40), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(994), 1, + STATE(1021), 1, sym_literal_element, - STATE(1059), 1, - sym_keyed_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1169), 1, + sym_keyed_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10880,84 +11744,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1353] = 29, + [1684] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(330), 1, - anon_sym_COMMA, - ACTIONS(332), 1, + ACTIONS(410), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(41), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(961), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1076), 1, - sym_keyed_element, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1169), 1, + sym_keyed_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10970,84 +11838,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1472] = 29, + [1809] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(334), 1, - anon_sym_COMMA, - ACTIONS(336), 1, + ACTIONS(412), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(42), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(990), 1, + STATE(1021), 1, sym_literal_element, - STATE(1035), 1, - sym_keyed_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1169), 1, + sym_keyed_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11060,84 +11932,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1591] = 29, + [1934] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(338), 1, - anon_sym_COMMA, - ACTIONS(340), 1, + ACTIONS(414), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(43), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(956), 1, + STATE(1021), 1, sym_literal_element, - STATE(1067), 1, - sym_keyed_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1169), 1, + sym_keyed_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11150,80 +12026,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1710] = 25, - ACTIONS(29), 1, - anon_sym_struct, + [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, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(286), 1, - sym_comment, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(344), 1, - anon_sym_LF, - ACTIONS(348), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(350), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(352), 1, - anon_sym_LBRACK, - ACTIONS(354), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(356), 1, + ACTIONS(370), 1, + anon_sym_LBRACE, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(364), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(416), 1, + anon_sym_RBRACE, + STATE(44), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(931), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1021), 1, + sym_literal_element, + STATE(1118), 1, + sym_literal_value, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + STATE(1169), 1, + sym_keyed_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(346), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(816), 4, + 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(360), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 9, - sym_raw_string_literal, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11236,159 +12120,182 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [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, + [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, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_STAR, - ACTIONS(385), 1, + ACTIONS(33), 1, anon_sym_struct, - ACTIONS(388), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(391), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(394), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(397), 1, + 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, anon_sym_LT_DASH, - STATE(241), 1, + 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, sym_qualified_type, - ACTIONS(366), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(262), 2, - sym_parameter_list, + 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, sym__simple_type, - STATE(253), 9, - sym_generic_type, + ACTIONS(380), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(823), 4, 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(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, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, + 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_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [1914] = 28, + 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, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(420), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(46), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1169), 1, sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11401,82 +12308,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2030] = 28, + [2434] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(402), 1, + ACTIONS(422), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(47), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1169), 1, sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11489,82 +12402,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2146] = 28, + [2559] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(404), 1, + ACTIONS(424), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(48), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1169), 1, sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11577,82 +12496,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2262] = 28, + [2684] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(406), 1, + ACTIONS(426), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(49), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1169), 1, sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11665,82 +12590,88 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2378] = 28, + [2809] = 31, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(408), 1, + ACTIONS(428), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(50), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1169), 1, sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11753,82 +12684,86 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2494] = 28, + [2934] = 30, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(410), 1, - anon_sym_RBRACE, - STATE(589), 1, + STATE(51), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1021), 1, sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1169), 1, sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11841,82 +12776,84 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2610] = 28, + [3056] = 29, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(370), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(412), 1, - anon_sym_RBRACE, - STATE(589), 1, + STATE(52), 1, + sym_comment, + STATE(556), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1118), 1, sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + STATE(1164), 1, + sym_literal_element, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11929,82 +12866,83 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2726] = 28, + [3175] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(430), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - ACTIONS(414), 1, - anon_sym_RBRACE, - STATE(589), 1, + STATE(53), 1, + sym_comment, + STATE(470), 1, sym__expression, - STATE(794), 1, + STATE(934), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1138), 1, + STATE(1172), 1, + sym_expression_list, + STATE(1174), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1222), 2, + sym_send_statement, + sym_receive_statement, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12017,82 +12955,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2842] = 28, + [3292] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(452), 1, + anon_sym_RPAREN, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(416), 1, - anon_sym_RBRACE, - STATE(589), 1, + STATE(54), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12105,82 +13043,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [2958] = 28, + [3408] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(418), 1, - anon_sym_RBRACE, - STATE(589), 1, + ACTIONS(460), 1, + anon_sym_RPAREN, + STATE(55), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12193,82 +13131,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3074] = 28, + [3524] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(420), 1, - anon_sym_RBRACE, - STATE(589), 1, + ACTIONS(462), 1, + anon_sym_RPAREN, + STATE(56), 1, + sym_comment, + STATE(516), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1138), 1, + STATE(1101), 1, + sym_variadic_argument, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12281,82 +13219,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3190] = 28, + [3640] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(422), 1, - anon_sym_RBRACE, - STATE(589), 1, + ACTIONS(464), 1, + anon_sym_RPAREN, + STATE(57), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12369,80 +13307,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3306] = 27, + [3756] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(589), 1, + ACTIONS(466), 1, + anon_sym_RPAREN, + STATE(58), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1177), 1, - sym_keyed_element, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12455,78 +13395,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3419] = 26, + [3872] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(589), 1, + ACTIONS(468), 1, + anon_sym_RPAREN, + STATE(59), 1, + sym_comment, + STATE(495), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1069), 1, - sym_literal_value, - STATE(1115), 1, - sym_literal_element, - STATE(1138), 1, + STATE(1052), 1, + sym_variadic_argument, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12539,77 +13483,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3529] = 25, + [3988] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, - anon_sym_DQUOTE, - STATE(474), 1, + ACTIONS(470), 1, + anon_sym_RPAREN, + STATE(60), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(884), 1, + STATE(799), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1173), 1, - sym_expression_list, - ACTIONS(434), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1195), 2, - sym_send_statement, - sym_receive_statement, - STATE(1267), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12622,76 +13571,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3637] = 25, + [4104] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(446), 1, - anon_sym_RPAREN, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - STATE(568), 1, + 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, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12704,76 +13659,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3744] = 25, + [4220] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(458), 1, - anon_sym_LBRACE, - ACTIONS(460), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(506), 1, + ACTIONS(476), 1, + anon_sym_RPAREN, + STATE(62), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1192), 1, - sym_expression_list, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12786,76 +13747,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3851] = 25, + [4336] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(464), 1, + ACTIONS(478), 1, anon_sym_RPAREN, - STATE(514), 1, + STATE(63), 1, + sym_comment, + STATE(507), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1062), 1, + STATE(1086), 1, sym_variadic_argument, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12868,76 +13835,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3958] = 25, + [4452] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(466), 1, + ACTIONS(480), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(64), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1162), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12950,76 +13923,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4065] = 25, + [4568] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(374), 1, + anon_sym_LT_DASH, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(482), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(484), 1, + anon_sym_RBRACK, + ACTIONS(486), 1, anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(468), 1, - anon_sym_RPAREN, - STATE(522), 1, + STATE(65), 1, + sym_comment, + STATE(657), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1068), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1077), 1, + sym_parameter_declaration, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13032,76 +14011,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4172] = 25, + [4684] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(470), 1, + ACTIONS(488), 1, anon_sym_RPAREN, - STATE(494), 1, + STATE(66), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1054), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13114,76 +14099,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4279] = 25, + [4800] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(472), 1, + ACTIONS(490), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(67), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1162), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13196,76 +14187,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4386] = 25, + [4916] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(474), 1, + ACTIONS(492), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(68), 1, + sym_comment, + STATE(518), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1105), 1, sym_variadic_argument, - ACTIONS(312), 2, + STATE(1157), 1, + sym_implicit_length_array_type, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13278,76 +14275,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4493] = 25, + [5032] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(476), 1, + ACTIONS(494), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(69), 1, + sym_comment, + STATE(508), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1011), 1, sym_variadic_argument, - ACTIONS(312), 2, + STATE(1157), 1, + sym_implicit_length_array_type, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13360,76 +14363,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4600] = 25, + [5148] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(478), 1, + ACTIONS(496), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(70), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1162), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13442,76 +14451,170 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4707] = 25, + [5264] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + 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, + 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(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, - anon_sym_RBRACK, - ACTIONS(482), 1, - anon_sym_DOT_DOT_DOT, - STATE(653), 1, + ACTIONS(498), 1, + anon_sym_range, + STATE(72), 1, + sym_comment, + STATE(513), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1128), 1, + sym_expression_list, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13524,76 +14627,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4814] = 25, + [5496] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(484), 1, + ACTIONS(500), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(73), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1162), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13606,76 +14715,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4921] = 25, + [5612] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(486), 1, + ACTIONS(502), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(74), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1162), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13688,76 +14803,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5028] = 25, + [5728] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(504), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(508), 1, + anon_sym_LBRACE, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(488), 1, - anon_sym_RPAREN, - STATE(568), 1, + STATE(75), 1, + sym_comment, + STATE(523), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + STATE(1217), 1, + sym_expression_list, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13770,76 +14891,82 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5135] = 25, + [5844] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(490), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(492), 1, - anon_sym_RBRACK, - ACTIONS(494), 1, + ACTIONS(454), 1, anon_sym_STAR, - STATE(639), 1, + ACTIONS(456), 1, + anon_sym_LT_DASH, + ACTIONS(514), 1, + anon_sym_RPAREN, + STATE(76), 1, + sym_comment, + STATE(525), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1020), 1, - sym_parameter_declaration, - STATE(1138), 1, + STATE(1109), 1, + sym_variadic_argument, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1112), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13852,76 +14979,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5242] = 25, + [5960] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(496), 1, - anon_sym_RPAREN, - STATE(535), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(472), 1, + anon_sym_RBRACK, + STATE(77), 1, + sym_comment, + STATE(649), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1096), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13934,76 +15065,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5349] = 25, + [6073] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(374), 1, + anon_sym_LT_DASH, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(486), 1, anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(498), 1, - anon_sym_RPAREN, - STATE(568), 1, + ACTIONS(516), 1, + sym_identifier, + ACTIONS(518), 1, + anon_sym_COLON, + STATE(78), 1, + sym_comment, + STATE(597), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14016,76 +15151,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5456] = 25, + [6186] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(500), 1, - anon_sym_RPAREN, - STATE(568), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(520), 1, + anon_sym_RBRACK, + STATE(79), 1, + sym_comment, + STATE(605), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14098,76 +15237,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5563] = 25, + [6299] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(502), 1, - anon_sym_RPAREN, - STATE(568), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(522), 1, + anon_sym_RBRACK, + STATE(80), 1, + sym_comment, + STATE(654), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14180,76 +15323,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5670] = 25, + [6412] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(504), 1, - anon_sym_range, - STATE(524), 1, + ACTIONS(524), 1, + anon_sym_RBRACK, + STATE(81), 1, + sym_comment, + STATE(622), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1122), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14262,76 +15409,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5777] = 25, + [6525] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(506), 1, - anon_sym_RPAREN, - STATE(518), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(526), 1, + anon_sym_RBRACK, + STATE(82), 1, + sym_comment, + STATE(625), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1038), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14344,158 +15495,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5884] = 25, + [6638] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(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, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(508), 1, + ACTIONS(528), 1, anon_sym_RPAREN, - STATE(511), 1, + STATE(83), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1095), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14508,74 +15581,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6098] = 24, + [6751] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, - anon_sym_func, + 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(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(512), 1, - anon_sym_COLON, - STATE(605), 1, + STATE(84), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(924), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14588,74 +15667,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6202] = 24, + [6864] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(524), 1, + ACTIONS(542), 1, + anon_sym_RBRACK, + STATE(85), 1, + sym_comment, + STATE(626), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1122), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14668,74 +15753,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6306] = 24, + [6977] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(556), 1, + ACTIONS(544), 1, + anon_sym_RPAREN, + STATE(86), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1130), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14748,74 +15839,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6410] = 24, + [7090] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(514), 1, - anon_sym_RBRACK, - STATE(648), 1, + STATE(87), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(923), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14828,74 +15925,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6514] = 24, + [7203] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(575), 1, + STATE(88), 1, + sym_comment, + STATE(544), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1122), 1, + STATE(1128), 1, sym_expression_list, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14908,74 +16011,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6618] = 24, + [7316] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(524), 1, + STATE(89), 1, + sym_comment, + STATE(513), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1198), 1, + STATE(1226), 1, sym_expression_list, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14988,74 +16097,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6722] = 24, + [7429] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(516), 1, - anon_sym_RBRACK, - STATE(624), 1, + ACTIONS(546), 1, + anon_sym_SEMI, + STATE(90), 1, + sym_comment, + STATE(656), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15068,74 +16183,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6826] = 24, + [7542] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(518), 1, - anon_sym_SEMI, - STATE(651), 1, + ACTIONS(548), 1, + anon_sym_RPAREN, + STATE(91), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15148,74 +16269,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6930] = 24, + [7655] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(310), 1, + anon_sym_func, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(520), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(540), 1, + anon_sym_DQUOTE, + STATE(92), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(938), 1, + sym_expression_list, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15228,74 +16355,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7034] = 24, + [7768] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, - anon_sym_RBRACK, - STATE(653), 1, + STATE(93), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(881), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15308,74 +16441,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7138] = 24, + [7881] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(522), 1, + ACTIONS(550), 1, anon_sym_RPAREN, - STATE(596), 1, + STATE(94), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15388,74 +16527,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7242] = 24, + [7994] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(524), 1, + ACTIONS(552), 1, anon_sym_RBRACK, - STATE(611), 1, + STATE(95), 1, + sym_comment, + STATE(600), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15468,74 +16613,166 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7346] = 24, + [8107] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(368), 1, + anon_sym_STAR, + ACTIONS(374), 1, + anon_sym_LT_DASH, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + 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, sym_identifier, - ACTIONS(448), 1, + ACTIONS(362), 1, + anon_sym_LPAREN, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(526), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + STATE(97), 1, + sym_comment, + STATE(513), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1128), 1, + sym_expression_list, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15548,74 +16785,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7450] = 24, + [8333] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(528), 1, + ACTIONS(556), 1, anon_sym_RBRACK, - STATE(613), 1, + STATE(98), 1, + sym_comment, + STATE(616), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15628,74 +16871,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7554] = 24, + [8446] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(530), 1, + ACTIONS(558), 1, anon_sym_RPAREN, - STATE(596), 1, + STATE(99), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15708,74 +16957,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7658] = 24, + [8559] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(532), 1, + ACTIONS(560), 1, anon_sym_RBRACK, - STATE(655), 1, + STATE(100), 1, + sym_comment, + STATE(602), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15788,74 +17043,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7762] = 24, + [8672] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(534), 1, - anon_sym_COLON, - STATE(603), 1, + ACTIONS(454), 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, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15868,74 +17129,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7866] = 24, + [8785] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_RBRACK, - STATE(610), 1, + STATE(102), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(942), 1, + sym_expression_list, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15948,74 +17215,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7970] = 24, + [8898] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, - anon_sym_RBRACK, - STATE(619), 1, + STATE(103), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(943), 1, + sym_expression_list, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16028,74 +17301,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8074] = 24, + [9011] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(492), 1, - anon_sym_RBRACK, - STATE(639), 1, + 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, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16108,74 +17387,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8178] = 24, + [9124] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(566), 1, + anon_sym_RBRACK, + STATE(105), 1, + sym_comment, + STATE(614), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(919), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16188,74 +17473,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8282] = 24, + [9237] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(568), 1, + anon_sym_RPAREN, + STATE(106), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(918), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16268,74 +17559,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8386] = 24, + [9350] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(504), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(552), 1, - anon_sym_RPAREN, - STATE(596), 1, + STATE(107), 1, + sym_comment, + STATE(543), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1128), 1, + sym_expression_list, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16348,74 +17645,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8490] = 24, + [9463] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(554), 1, - anon_sym_RBRACK, - STATE(609), 1, + STATE(108), 1, + sym_comment, + STATE(543), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1129), 1, + sym_expression_list, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16428,74 +17731,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8594] = 24, + [9576] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(556), 1, + ACTIONS(570), 1, anon_sym_SEMI, - STATE(631), 1, + STATE(109), 1, + sym_comment, + STATE(633), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16508,74 +17817,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8698] = 24, + [9689] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(558), 1, - anon_sym_RBRACK, - STATE(602), 1, + 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, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16588,74 +17903,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8802] = 24, + [9802] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(374), 1, + anon_sym_LT_DASH, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(486), 1, anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(560), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(516), 1, + sym_identifier, + ACTIONS(522), 1, + anon_sym_RBRACK, + STATE(111), 1, + sym_comment, + STATE(654), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16668,74 +17989,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8906] = 24, + [9915] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, - anon_sym_func, + 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(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(562), 1, - anon_sym_COLON, - STATE(616), 1, + STATE(112), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(905), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16748,74 +18075,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9010] = 24, + [10028] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(564), 1, - anon_sym_COLON, - STATE(622), 1, + ACTIONS(454), 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, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16828,74 +18161,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9114] = 24, + [10141] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(524), 1, + ACTIONS(484), 1, + anon_sym_RBRACK, + STATE(114), 1, + sym_comment, + STATE(657), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1130), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16908,74 +18247,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9218] = 24, + [10254] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(566), 1, - anon_sym_RBRACK, - STATE(597), 1, + STATE(115), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(896), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16988,74 +18333,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9322] = 24, + [10367] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(568), 1, - anon_sym_RBRACK, - STATE(599), 1, + ACTIONS(576), 1, + anon_sym_RPAREN, + STATE(116), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17068,74 +18419,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9426] = 24, + [10480] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(570), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(578), 1, + anon_sym_RBRACK, + STATE(117), 1, + sym_comment, + STATE(623), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17148,74 +18505,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9530] = 24, + [10593] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(572), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(580), 1, + anon_sym_RBRACK, + STATE(118), 1, + sym_comment, + STATE(620), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17228,74 +18591,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9634] = 24, + [10706] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(582), 1, + anon_sym_RPAREN, + STATE(119), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(926), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17308,74 +18677,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9738] = 24, + [10819] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(584), 1, + anon_sym_RPAREN, + STATE(120), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(885), 1, - sym_expression_list, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17388,74 +18763,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9842] = 24, + [10932] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(574), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(586), 1, + anon_sym_RBRACK, + STATE(121), 1, + sym_comment, + STATE(595), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17468,74 +18849,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [9946] = 24, + [11045] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, - anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(468), 1, + 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, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(920), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17548,74 +18935,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10050] = 24, + [11158] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, + ACTIONS(486), 1, anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(516), 1, sym_identifier, - ACTIONS(576), 1, + ACTIONS(590), 1, anon_sym_COLON, - STATE(606), 1, + STATE(123), 1, + sym_comment, + STATE(593), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17628,74 +19021,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10154] = 24, + [11271] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(374), 1, + anon_sym_LT_DASH, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(486), 1, anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(578), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(516), 1, + sym_identifier, + ACTIONS(592), 1, + anon_sym_COLON, + STATE(124), 1, + sym_comment, + STATE(607), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(964), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17708,74 +19107,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10258] = 24, + [11384] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(594), 1, + anon_sym_RBRACK, + STATE(125), 1, + sym_comment, + STATE(655), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(936), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17788,74 +19193,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10362] = 24, + [11497] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(580), 1, - anon_sym_COLON, - STATE(615), 1, + ACTIONS(454), 1, + anon_sym_STAR, + ACTIONS(456), 1, + anon_sym_LT_DASH, + STATE(126), 1, + sym_comment, + STATE(575), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1162), 1, + sym_variadic_argument, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17868,74 +19279,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10466] = 24, + [11610] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - STATE(556), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + STATE(127), 1, + sym_comment, + STATE(513), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1122), 1, + STATE(1129), 1, sym_expression_list, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17948,74 +19365,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10570] = 24, + [11723] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(582), 1, - anon_sym_RBRACK, - STATE(595), 1, + STATE(128), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18028,74 +19451,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10674] = 24, + [11836] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(584), 1, - anon_sym_RBRACK, - STATE(608), 1, + STATE(129), 1, + sym_comment, + STATE(466), 1, sym__expression, - STATE(794), 1, + STATE(886), 1, + sym_expression_list, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18108,74 +19537,80 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10778] = 24, + [11949] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(596), 1, + anon_sym_RPAREN, + STATE(130), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(923), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18188,74 +19623,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10882] = 24, + [12062] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, + ACTIONS(31), 1, + anon_sym_STAR, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 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, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(182), 1, + anon_sym_func, + ACTIONS(598), 1, + sym_identifier, + STATE(131), 1, + sym_comment, + STATE(298), 1, sym__expression, STATE(895), 1, sym_qualified_type, - STATE(921), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18268,74 +19707,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10986] = 24, + [12172] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(586), 1, - anon_sym_RBRACK, - STATE(604), 1, + STATE(132), 1, + sym_comment, + STATE(491), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18348,74 +19791,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11090] = 24, + [12282] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(468), 1, + STATE(133), 1, + sym_comment, + STATE(640), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(953), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18428,74 +19875,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11194] = 24, + [12392] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + STATE(134), 1, + sym_comment, + STATE(645), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(949), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18508,74 +19959,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11298] = 24, + [12502] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(588), 1, - anon_sym_RPAREN, - STATE(596), 1, + STATE(135), 1, + sym_comment, + STATE(609), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18588,74 +20043,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11402] = 24, + [12612] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(590), 1, - anon_sym_RPAREN, - STATE(596), 1, + STATE(136), 1, + sym_comment, + STATE(621), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18668,74 +20127,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11506] = 24, + [12722] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(568), 1, + STATE(137), 1, + sym_comment, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18748,74 +20211,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11610] = 24, + [12832] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(310), 1, + ACTIONS(368), 1, + anon_sym_STAR, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(514), 1, - anon_sym_RBRACK, - STATE(648), 1, + STATE(138), 1, + sym_comment, + STATE(639), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18828,72 +20295,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11714] = 23, + [12942] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(594), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, - anon_sym_DQUOTE, - STATE(384), 1, + STATE(139), 1, + sym_comment, + STATE(554), 1, sym__expression, - STATE(916), 1, + STATE(799), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18906,72 +20379,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11815] = 23, + [13052] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(600), 1, + sym_identifier, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(608), 1, anon_sym_LT_DASH, - STATE(630), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + STATE(140), 1, + sym_comment, + STATE(388), 1, sym__expression, - STATE(794), 1, + STATE(883), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18984,72 +20463,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [11916] = 23, + [13162] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(27), 1, - anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(39), 1, - anon_sym_LT_DASH, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(178), 1, + ACTIONS(362), 1, + anon_sym_LPAREN, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, sym_identifier, - STATE(300), 1, + ACTIONS(454), 1, + anon_sym_STAR, + ACTIONS(456), 1, + anon_sym_LT_DASH, + STATE(141), 1, + sym_comment, + STATE(545), 1, sym__expression, - STATE(903), 1, + STATE(799), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19062,72 +20547,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12017] = 23, + [13272] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 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(23), 1, - anon_sym_LBRACK, ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, + ACTIONS(182), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(598), 1, sym_identifier, - STATE(298), 1, + STATE(142), 1, + sym_comment, + STATE(296), 1, sym__expression, - STATE(903), 1, + STATE(895), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19140,72 +20631,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12118] = 23, + [13382] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, + ACTIONS(31), 1, + anon_sym_STAR, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 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, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - STATE(489), 1, + ACTIONS(182), 1, + anon_sym_func, + ACTIONS(598), 1, + sym_identifier, + STATE(143), 1, + sym_comment, + STATE(295), 1, sym__expression, STATE(895), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19218,72 +20715,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12219] = 23, + [13492] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(636), 1, + STATE(144), 1, + sym_comment, + STATE(485), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19296,72 +20799,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12320] = 23, + [13602] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(477), 1, + STATE(145), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19374,72 +20883,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12421] = 23, + [13712] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(27), 1, - anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(39), 1, - anon_sym_LT_DASH, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(178), 1, + ACTIONS(362), 1, + anon_sym_LPAREN, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, sym_identifier, - STATE(297), 1, + ACTIONS(454), 1, + anon_sym_STAR, + ACTIONS(456), 1, + anon_sym_LT_DASH, + STATE(146), 1, + sym_comment, + STATE(564), 1, sym__expression, - STATE(903), 1, + STATE(799), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19452,72 +20967,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12522] = 23, + [13822] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 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(23), 1, - anon_sym_LBRACK, ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, + ACTIONS(182), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(598), 1, sym_identifier, - STATE(296), 1, + STATE(147), 1, + sym_comment, + STATE(297), 1, sym__expression, - STATE(903), 1, + STATE(895), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19530,72 +21051,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12623] = 23, + [13932] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(27), 1, - anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(39), 1, + 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(69), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, - anon_sym_func, - ACTIONS(612), 1, - sym_identifier, - STATE(295), 1, + STATE(148), 1, + sym_comment, + STATE(617), 1, sym__expression, - STATE(903), 1, + STATE(799), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19608,72 +21135,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12724] = 23, + [14042] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, + ACTIONS(31), 1, + anon_sym_STAR, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, + ACTIONS(43), 1, + anon_sym_LT_DASH, + ACTIONS(73), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(182), 1, + anon_sym_func, + ACTIONS(598), 1, sym_identifier, - ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, - anon_sym_LT_DASH, - STATE(426), 1, + STATE(149), 1, + sym_comment, + STATE(294), 1, sym__expression, - STATE(794), 1, + STATE(895), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19686,72 +21219,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12825] = 23, + [14152] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(425), 1, + STATE(150), 1, + sym_comment, + STATE(580), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19764,72 +21303,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12926] = 23, + [14262] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(625), 1, + STATE(151), 1, + sym_comment, + STATE(426), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19842,72 +21387,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13027] = 23, + [14372] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 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, + ACTIONS(310), 1, + anon_sym_func, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - STATE(563), 1, + ACTIONS(540), 1, + anon_sym_DQUOTE, + STATE(152), 1, + sym_comment, + STATE(476), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19920,72 +21471,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13128] = 23, + [14482] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, anon_sym_LT_DASH, - STATE(565), 1, + ACTIONS(620), 1, + anon_sym_STAR, + STATE(153), 1, + sym_comment, + STATE(638), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1155), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19998,72 +21555,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13229] = 23, + [14592] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, anon_sym_LT_DASH, - STATE(566), 1, + ACTIONS(620), 1, + anon_sym_STAR, + STATE(154), 1, + sym_comment, + STATE(635), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1155), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20076,72 +21639,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13330] = 23, + [14702] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - STATE(621), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + STATE(155), 1, + sym_comment, + STATE(648), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20154,150 +21723,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13431] = 23, + [14812] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(567), 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, - 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, - [13532] = 23, - ACTIONS(3), 1, + STATE(156), 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(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, - anon_sym_STAR, - STATE(658), 1, + STATE(612), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20310,72 +21807,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13633] = 23, + [14922] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(426), 1, + STATE(157), 1, + sym_comment, + STATE(484), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20388,72 +21891,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13734] = 23, + [15032] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(633), 1, + STATE(158), 1, + sym_comment, + STATE(562), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20466,72 +21975,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13835] = 23, + [15142] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - STATE(634), 1, + ACTIONS(510), 1, + anon_sym_LT_DASH, + STATE(159), 1, + sym_comment, + STATE(570), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20544,72 +22059,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13936] = 23, + [15252] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(296), 1, + ACTIONS(41), 1, + anon_sym_chan, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, - anon_sym_chan, - STATE(426), 1, + STATE(160), 1, + sym_comment, + STATE(642), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20622,72 +22143,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14037] = 23, + [15362] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(600), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(608), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - STATE(637), 1, + STATE(161), 1, + sym_comment, + STATE(383), 1, sym__expression, - STATE(794), 1, + STATE(883), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20700,72 +22227,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14138] = 23, + [15472] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 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, + ACTIONS(310), 1, + anon_sym_func, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - STATE(642), 1, + ACTIONS(540), 1, + anon_sym_DQUOTE, + STATE(162), 1, + sym_comment, + STATE(481), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20778,72 +22311,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14239] = 23, + [15582] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(387), 1, + STATE(163), 1, + sym_comment, + STATE(637), 1, sym__expression, - STATE(916), 1, + STATE(799), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20856,72 +22395,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14340] = 23, + [15692] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(635), 1, + STATE(164), 1, + sym_comment, + STATE(571), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20934,72 +22479,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14441] = 23, + [15802] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(298), 1, + ACTIONS(41), 1, + anon_sym_chan, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, - anon_sym_chan, - STATE(426), 1, + STATE(165), 1, + sym_comment, + STATE(599), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21012,72 +22563,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14542] = 23, + [15912] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(302), 1, sym_identifier, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(386), 1, + STATE(166), 1, + sym_comment, + STATE(478), 1, sym__expression, - STATE(916), 1, + STATE(931), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21090,72 +22647,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14643] = 23, + [16022] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(302), 1, sym_identifier, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(385), 1, + STATE(167), 1, + sym_comment, + STATE(475), 1, sym__expression, - STATE(916), 1, + STATE(931), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21168,72 +22731,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14744] = 23, + [16132] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(310), 1, + anon_sym_func, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - STATE(426), 1, + ACTIONS(540), 1, + anon_sym_DQUOTE, + STATE(168), 1, + sym_comment, + STATE(474), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21246,72 +22815,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14845] = 23, + [16242] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(600), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(600), 1, - anon_sym_LT_DASH, ACTIONS(608), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, anon_sym_DQUOTE, - STATE(388), 1, + STATE(169), 1, + sym_comment, + STATE(386), 1, sym__expression, - STATE(916), 1, + STATE(883), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21324,72 +22899,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [14946] = 23, + [16352] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(632), 1, + STATE(170), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21402,150 +22983,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15047] = 23, + [16462] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, 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(444), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, - STATE(592), 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(452), 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, - [15148] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(504), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - STATE(587), 1, + ACTIONS(622), 1, + anon_sym_chan, + STATE(171), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21558,72 +23067,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15249] = 23, + [16572] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(600), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(600), 1, - anon_sym_LT_DASH, ACTIONS(608), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, anon_sym_DQUOTE, - STATE(383), 1, + STATE(172), 1, + sym_comment, + STATE(389), 1, sym__expression, - STATE(916), 1, + STATE(883), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21636,72 +23151,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15350] = 23, + [16682] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(626), 1, + STATE(173), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21714,72 +23235,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15451] = 23, + [16792] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(430), 1, + sym_identifier, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - STATE(596), 1, + ACTIONS(446), 1, + anon_sym_DQUOTE, + STATE(174), 1, + sym_comment, + STATE(487), 1, sym__expression, - STATE(794), 1, + STATE(934), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21792,72 +23319,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15552] = 23, + [16902] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(640), 1, + STATE(175), 1, + sym_comment, + STATE(473), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21870,72 +23403,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15653] = 23, + [17012] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(430), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - STATE(384), 1, + STATE(176), 1, + sym_comment, + STATE(489), 1, sym__expression, - STATE(916), 1, + STATE(934), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21948,72 +23487,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15754] = 23, + [17122] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACK, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(27), 1, - anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_LBRACK, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(39), 1, + ACTIONS(430), 1, + sym_identifier, + ACTIONS(432), 1, + anon_sym_LPAREN, + ACTIONS(434), 1, + anon_sym_func, + ACTIONS(436), 1, + anon_sym_STAR, + ACTIONS(438), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, - anon_sym_func, - ACTIONS(612), 1, - sym_identifier, - STATE(294), 1, + STATE(177), 1, + sym_comment, + STATE(488), 1, sym__expression, - STATE(903), 1, + STATE(934), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22026,72 +23571,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15855] = 23, + [17232] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(430), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(436), 1, anon_sym_STAR, - STATE(629), 1, + ACTIONS(438), 1, + anon_sym_LT_DASH, + ACTIONS(446), 1, + anon_sym_DQUOTE, + STATE(178), 1, + sym_comment, + STATE(492), 1, sym__expression, - STATE(794), 1, + STATE(934), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22104,72 +23655,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [15956] = 23, + [17342] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(430), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - STATE(656), 1, + STATE(179), 1, + sym_comment, + STATE(490), 1, sym__expression, - STATE(794), 1, + STATE(934), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22182,72 +23739,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16057] = 23, + [17452] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(627), 1, + STATE(180), 1, + sym_comment, + STATE(628), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22260,72 +23823,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16158] = 23, + [17562] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(230), 1, + sym_identifier, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - STATE(426), 1, + ACTIONS(250), 1, + anon_sym_DQUOTE, + STATE(181), 1, + sym_comment, + STATE(341), 1, sym__expression, - STATE(794), 1, + STATE(899), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22338,72 +23907,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16259] = 23, + [17672] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(230), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(250), 1, anon_sym_DQUOTE, - STATE(467), 1, + STATE(182), 1, + sym_comment, + STATE(342), 1, sym__expression, - STATE(794), 1, + STATE(899), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22416,72 +23991,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16360] = 23, + [17782] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(230), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(238), 1, anon_sym_STAR, - STATE(644), 1, + ACTIONS(240), 1, + anon_sym_LT_DASH, + ACTIONS(250), 1, + anon_sym_DQUOTE, + STATE(183), 1, + sym_comment, + STATE(346), 1, sym__expression, - STATE(794), 1, + STATE(899), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22494,150 +24075,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16461] = 23, + [17892] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(643), 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, - [16562] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(39), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(178), 1, - anon_sym_func, - ACTIONS(612), 1, - sym_identifier, - ACTIONS(616), 1, - anon_sym_chan, - STATE(294), 1, + STATE(184), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(903), 1, + STATE(799), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22650,72 +24159,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16663] = 23, + [18002] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(466), 1, + STATE(185), 1, + sym_comment, + STATE(573), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22728,72 +24243,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16764] = 23, + [18112] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(230), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(250), 1, anon_sym_DQUOTE, - STATE(465), 1, + STATE(186), 1, + sym_comment, + STATE(345), 1, sym__expression, - STATE(794), 1, + STATE(899), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22806,72 +24327,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16865] = 23, + [18222] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(504), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - STATE(426), 1, + STATE(187), 1, + sym_comment, + STATE(631), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22884,72 +24411,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [16966] = 23, + [18332] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(463), 1, + STATE(188), 1, + sym_comment, + STATE(476), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22962,72 +24495,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17067] = 23, + [18442] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(230), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(236), 1, + anon_sym_func, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(250), 1, anon_sym_DQUOTE, - STATE(481), 1, + STATE(189), 1, + sym_comment, + STATE(340), 1, sym__expression, - STATE(895), 1, + STATE(899), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23040,72 +24579,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17168] = 23, + [18552] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(425), 1, + STATE(190), 1, + sym_comment, + STATE(426), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23118,72 +24663,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17269] = 23, + [18662] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(586), 1, + ACTIONS(620), 1, + anon_sym_STAR, + STATE(191), 1, + sym_comment, + STATE(634), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1155), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23196,72 +24747,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17370] = 23, + [18772] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(657), 1, + STATE(192), 1, + sym_comment, + STATE(644), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23274,72 +24831,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17471] = 23, + [18882] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(504), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - STATE(601), 1, + STATE(193), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23352,72 +24915,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17572] = 23, + [18992] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(484), 1, + ACTIONS(622), 1, + anon_sym_chan, + STATE(194), 1, + sym_comment, + STATE(476), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23430,72 +24999,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17673] = 23, + [19102] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(430), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - STATE(649), 1, + STATE(195), 1, + sym_comment, + STATE(482), 1, sym__expression, - STATE(794), 1, + STATE(934), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23508,72 +25083,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17774] = 23, + [19212] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(450), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - STATE(425), 1, + STATE(196), 1, + sym_comment, + STATE(608), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23586,72 +25167,162 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17875] = 23, + [19322] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, + ACTIONS(41), 1, + anon_sym_chan, + ACTIONS(600), 1, + sym_identifier, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_func, + ACTIONS(606), 1, + anon_sym_STAR, + ACTIONS(608), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, + anon_sym_DQUOTE, + STATE(197), 1, + sym_comment, + STATE(384), 1, + sym__expression, + STATE(883), 1, + sym_qualified_type, + STATE(1135), 1, + sym_implicit_length_array_type, + ACTIONS(610), 2, + anon_sym_new, + anon_sym_make, + STATE(1280), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(614), 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(612), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(1097), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(618), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(403), 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, + [19432] = 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, + 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(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(620), 1, anon_sym_STAR, - STATE(650), 1, + STATE(198), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23664,72 +25335,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [17976] = 23, + [19542] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(592), 1, + ACTIONS(600), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(600), 1, - anon_sym_LT_DASH, ACTIONS(608), 1, - anon_sym_DQUOTE, + anon_sym_LT_DASH, ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(622), 1, anon_sym_chan, - STATE(384), 1, + STATE(199), 1, + sym_comment, + STATE(387), 1, sym__expression, - STATE(916), 1, + STATE(883), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23742,72 +25419,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18077] = 23, + [19652] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, - anon_sym_DQUOTE, - STATE(346), 1, + ACTIONS(622), 1, + anon_sym_chan, + STATE(200), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23820,72 +25503,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18178] = 23, + [19762] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(600), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(600), 1, - anon_sym_LT_DASH, ACTIONS(608), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, anon_sym_DQUOTE, - STATE(389), 1, + STATE(201), 1, + sym_comment, + STATE(385), 1, sym__expression, - STATE(916), 1, + STATE(883), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23898,72 +25587,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18279] = 23, + [19872] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(600), 1, + sym_identifier, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(608), 1, anon_sym_LT_DASH, - STATE(582), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + STATE(202), 1, + sym_comment, + STATE(387), 1, sym__expression, - STATE(794), 1, + STATE(883), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23976,72 +25671,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18380] = 23, + [19982] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(607), 1, + STATE(203), 1, + sym_comment, + STATE(641), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24054,72 +25755,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18481] = 23, + [20092] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(226), 1, + ACTIONS(430), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(446), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(622), 1, anon_sym_chan, - STATE(346), 1, + STATE(204), 1, + sym_comment, + STATE(487), 1, sym__expression, - STATE(947), 1, + STATE(934), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24132,72 +25839,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18582] = 23, + [20202] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(490), 1, + STATE(205), 1, + sym_comment, + STATE(630), 1, sym__expression, - STATE(884), 1, + STATE(799), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24210,72 +25923,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18683] = 23, + [20312] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, - anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(346), 1, + ACTIONS(486), 1, + anon_sym_STAR, + ACTIONS(516), 1, + sym_identifier, + STATE(206), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24288,150 +26007,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18784] = 23, + [20422] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(504), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - STATE(585), 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(452), 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, - [18885] = 23, - ACTIONS(3), 1, + STATE(207), 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(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(426), 1, + STATE(603), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24444,150 +26091,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [18986] = 23, + [20532] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(230), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(250), 1, anon_sym_DQUOTE, - STATE(660), 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, - [19087] = 23, - ACTIONS(3), 1, + STATE(208), 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(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, - ACTIONS(616), 1, - anon_sym_chan, - STATE(490), 1, + STATE(344), 1, sym__expression, - STATE(884), 1, + STATE(899), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24600,72 +26175,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19188] = 23, + [20642] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, + ACTIONS(31), 1, + anon_sym_STAR, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(310), 1, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(182), 1, + anon_sym_func, + ACTIONS(598), 1, sym_identifier, - STATE(426), 1, + STATE(209), 1, + sym_comment, + STATE(299), 1, sym__expression, - STATE(794), 1, + STATE(895), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24678,72 +26259,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19289] = 23, + [20752] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(490), 1, + STATE(210), 1, + sym_comment, + STATE(632), 1, sym__expression, - STATE(884), 1, + STATE(799), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24756,72 +26343,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19390] = 23, + [20862] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(298), 1, + ACTIONS(41), 1, + anon_sym_chan, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, - anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, - anon_sym_chan, - STATE(426), 1, + ACTIONS(620), 1, + anon_sym_STAR, + STATE(211), 1, + sym_comment, + STATE(636), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1155), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24834,72 +26427,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19491] = 23, + [20972] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(450), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(620), 1, anon_sym_STAR, + STATE(212), 1, + sym_comment, STATE(652), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1155), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24912,72 +26511,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19592] = 23, + [21082] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(302), 1, + sym_identifier, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - STATE(646), 1, + STATE(213), 1, + sym_comment, + STATE(483), 1, sym__expression, - STATE(794), 1, + STATE(931), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24990,72 +26595,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19693] = 23, + [21192] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(645), 1, + STATE(214), 1, + sym_comment, + STATE(468), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25068,72 +26679,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19794] = 23, + [21302] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(368), 1, anon_sym_STAR, - STATE(426), 1, + ACTIONS(374), 1, + anon_sym_LT_DASH, + ACTIONS(382), 1, + anon_sym_DQUOTE, + STATE(215), 1, + sym_comment, + STATE(465), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25146,72 +26763,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19895] = 23, + [21412] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - STATE(612), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + STATE(216), 1, + sym_comment, + STATE(647), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25224,72 +26847,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [19996] = 23, + [21522] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - STATE(598), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + STATE(217), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25302,72 +26931,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20097] = 23, + [21632] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, ACTIONS(230), 1, + sym_identifier, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(236), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(250), 1, anon_sym_DQUOTE, - STATE(345), 1, + ACTIONS(622), 1, + anon_sym_chan, + STATE(218), 1, + sym_comment, + STATE(344), 1, sym__expression, - STATE(947), 1, + STATE(899), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1279), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25380,72 +27015,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20198] = 23, + [21742] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, + ACTIONS(31), 1, + anon_sym_STAR, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 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, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - STATE(480), 1, + ACTIONS(182), 1, + anon_sym_func, + ACTIONS(598), 1, + sym_identifier, + STATE(219), 1, + sym_comment, + STATE(299), 1, sym__expression, STATE(895), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25458,72 +27099,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20299] = 23, + [21852] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(344), 1, + STATE(220), 1, + sym_comment, + STATE(469), 1, sym__expression, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25536,72 +27183,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20400] = 23, + [21962] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(600), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(602), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(604), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(606), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(608), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - STATE(342), 1, + STATE(221), 1, + sym_comment, + STATE(387), 1, sym__expression, - STATE(947), 1, + STATE(883), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1135), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(610), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1280), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(614), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(612), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1097), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(618), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(403), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25614,72 +27267,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20501] = 23, + [22072] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(471), 1, + STATE(222), 1, + sym_comment, + STATE(646), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25692,72 +27351,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20602] = 23, + [22182] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(473), 1, + STATE(223), 1, + sym_comment, + STATE(467), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25770,72 +27435,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20703] = 23, + [22292] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, - sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(470), 1, + STATE(224), 1, + sym_comment, + STATE(604), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25848,72 +27519,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20804] = 23, + [22402] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(478), 1, + STATE(225), 1, + sym_comment, + STATE(629), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25926,72 +27603,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [20905] = 23, + [22512] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(366), 1, + anon_sym_func, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(486), 1, + STATE(226), 1, + sym_comment, + STATE(426), 1, sym__expression, - STATE(895), 1, + STATE(799), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26004,72 +27687,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21006] = 23, + [22622] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(341), 1, + ACTIONS(622), 1, + anon_sym_chan, + STATE(227), 1, + sym_comment, + STATE(425), 1, sym__expression, - STATE(947), 1, + STATE(799), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26082,72 +27771,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21107] = 23, + [22732] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, + ACTIONS(31), 1, + anon_sym_STAR, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - 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, + ACTIONS(43), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(73), 1, anon_sym_DQUOTE, - STATE(340), 1, + 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, sym__expression, - STATE(947), 1, + STATE(895), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1145), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(67), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(71), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(69), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1104), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(75), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(335), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26160,72 +27855,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21208] = 23, + [22842] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(450), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(456), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, - anon_sym_DQUOTE, - STATE(492), 1, + STATE(229), 1, + sym_comment, + STATE(619), 1, sym__expression, - STATE(884), 1, + STATE(799), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26238,72 +27939,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21309] = 23, + [22952] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(430), 1, + sym_identifier, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(434), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(436), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(438), 1, anon_sym_LT_DASH, - STATE(654), 1, + ACTIONS(446), 1, + anon_sym_DQUOTE, + STATE(230), 1, + sym_comment, + STATE(487), 1, sym__expression, - STATE(794), 1, + STATE(934), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1174), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(440), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(444), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(442), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1020), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(448), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(560), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26316,72 +28023,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21410] = 23, + [23062] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(360), 1, + sym_identifier, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, anon_sym_LT_DASH, - STATE(620), 1, + ACTIONS(620), 1, + anon_sym_STAR, + STATE(231), 1, + sym_comment, + STATE(653), 1, sym__expression, - STATE(794), 1, + STATE(799), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1155), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(458), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26394,72 +28107,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21511] = 23, + [23172] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(230), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(236), 1, + anon_sym_func, + ACTIONS(238), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(240), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(250), 1, anon_sym_DQUOTE, - STATE(488), 1, + STATE(232), 1, + sym_comment, + STATE(344), 1, sym__expression, - STATE(895), 1, + STATE(899), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1142), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(244), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(955), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(248), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(246), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1087), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(252), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(379), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26472,72 +28191,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21612] = 23, + [23282] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(360), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(368), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(374), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(382), 1, anon_sym_DQUOTE, - STATE(491), 1, + STATE(233), 1, + sym_comment, + STATE(660), 1, sym__expression, - STATE(884), 1, + STATE(799), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(378), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26550,72 +28275,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21713] = 23, + [23392] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, + ACTIONS(362), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(366), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(382), 1, + anon_sym_DQUOTE, + ACTIONS(504), 1, + sym_identifier, + ACTIONS(506), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(510), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, - anon_sym_DQUOTE, - STATE(483), 1, + STATE(234), 1, + sym_comment, + STATE(627), 1, sym__expression, - STATE(884), 1, + STATE(799), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1157), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(376), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1275), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(380), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(512), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(849), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(384), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(452), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26628,72 +28359,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21814] = 23, + [23502] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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(29), 1, - anon_sym_struct, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(342), 1, + ACTIONS(41), 1, + anon_sym_chan, + ACTIONS(302), 1, sym_identifier, - ACTIONS(350), 1, + ACTIONS(310), 1, anon_sym_func, - ACTIONS(540), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(532), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(534), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, - anon_sym_chan, - STATE(481), 1, + STATE(235), 1, + sym_comment, + STATE(480), 1, sym__expression, - STATE(895), 1, + STATE(931), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1170), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(318), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1278), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(538), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(823), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(536), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1022), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(322), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(534), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26706,331 +28443,208 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [21915] = 23, + [23612] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 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, - 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, + 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, - ACTIONS(428), 1, + anon_sym_const, + anon_sym_var, anon_sym_func, - ACTIONS(430), 1, + anon_sym_type, anon_sym_STAR, - ACTIONS(432), 1, - anon_sym_LT_DASH, - 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, - 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_LBRACE, 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_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, - 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_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, - 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, + [23684] = 8, 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, - ACTIONS(23), 1, + 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, anon_sym_LBRACK, - ACTIONS(29), 1, + anon_sym_type, + anon_sym_STAR, 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_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, - 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_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, - 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, + [23753] = 8, 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, - ACTIONS(15), 1, + 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, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_type, anon_sym_STAR, - ACTIONS(29), 1, anon_sym_struct, - ACTIONS(33), 1, + anon_sym_LBRACE, 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_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, - 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_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, - 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, + [23822] = 8, + 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, - ACTIONS(622), 1, - anon_sym_DOT, - ACTIONS(624), 1, - anon_sym_LBRACK, - STATE(267), 1, - sym_type_arguments, - ACTIONS(618), 2, + STATE(254), 1, + sym_block, + ACTIONS(644), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(620), 44, + ACTIONS(646), 44, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27038,10 +28652,10 @@ 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, - anon_sym_LBRACE, anon_sym_interface, anon_sym_map, anon_sym_chan, @@ -27075,26 +28689,93 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22382] = 10, - ACTIONS(286), 1, + [23891] = 8, + 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, - ACTIONS(627), 1, + STATE(286), 1, + sym_block, + ACTIONS(648), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(631), 1, - anon_sym_DOT, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(650), 44, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_const, + anon_sym_var, + anon_sym_func, anon_sym_LBRACK, - ACTIONS(640), 1, + anon_sym_type, + anon_sym_STAR, + anon_sym_struct, + 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, + [23960] = 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, + 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(642), 1, + ACTIONS(667), 1, anon_sym_COLON, - STATE(306), 1, + STATE(241), 1, + sym_comment, + STATE(337), 1, sym_literal_value, - STATE(817), 1, + STATE(828), 1, sym_type_arguments, - ACTIONS(629), 40, + ACTIONS(654), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -27135,26 +28816,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [22452] = 10, - ACTIONS(286), 1, - sym_comment, - ACTIONS(627), 1, + [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, anon_sym_LF, - ACTIONS(631), 1, + ACTIONS(656), 1, anon_sym_DOT, - ACTIONS(634), 1, + ACTIONS(659), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - ACTIONS(640), 1, + ACTIONS(665), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(669), 1, anon_sym_COLON, - STATE(306), 1, + STATE(242), 1, + sym_comment, + STATE(337), 1, sym_literal_value, - STATE(817), 1, + STATE(828), 1, sym_type_arguments, - ACTIONS(629), 40, + ACTIONS(654), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -27195,17 +28882,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [22522] = 5, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, + [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, + ts_builtin_sym_end, + ACTIONS(675), 1, + anon_sym_LF, + ACTIONS(677), 1, + anon_sym_SEMI, + STATE(243), 1, sym_comment, + ACTIONS(673), 44, + 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, + 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, + [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, - sym_block, - ACTIONS(646), 2, + sym_comment, + ACTIONS(680), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(648), 44, + ACTIONS(682), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27217,6 +28966,7 @@ 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, @@ -27250,17 +29000,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22582] = 5, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, + [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, sym_comment, - STATE(288), 1, - sym_block, - ACTIONS(650), 2, + ACTIONS(684), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(652), 44, + ACTIONS(686), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27272,6 +29024,7 @@ 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, @@ -27305,17 +29058,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22642] = 5, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(658), 1, - anon_sym_LBRACK, - STATE(269), 1, - sym_type_arguments, - ACTIONS(654), 2, + ACTIONS(637), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(656), 44, + ACTIONS(639), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27323,6 +29078,7 @@ 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, @@ -27360,17 +29116,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22702] = 5, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, + [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, sym_comment, - STATE(255), 1, - sym_block, - ACTIONS(661), 2, + ACTIONS(688), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(663), 44, + ACTIONS(690), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27382,6 +29140,7 @@ 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, @@ -27415,13 +29174,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22762] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(665), 2, + ACTIONS(692), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(667), 45, + ACTIONS(694), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27467,13 +29232,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22817] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(669), 2, + ACTIONS(696), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(671), 45, + ACTIONS(698), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27519,13 +29290,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22872] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(673), 2, + ACTIONS(700), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(675), 45, + ACTIONS(702), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27571,13 +29348,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22927] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(677), 2, + ACTIONS(704), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(679), 45, + ACTIONS(706), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27623,16 +29406,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22982] = 5, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(681), 1, + ACTIONS(708), 2, ts_builtin_sym_end, - ACTIONS(685), 1, anon_sym_LF, - ACTIONS(687), 1, + ACTIONS(710), 45, anon_sym_SEMI, - ACTIONS(683), 44, anon_sym_package, anon_sym_import, anon_sym_LPAREN, @@ -27677,13 +29464,93 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23041] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(690), 2, + ACTIONS(742), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(692), 45, + ACTIONS(744), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27729,13 +29596,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23096] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(694), 2, + ACTIONS(746), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(696), 45, + ACTIONS(748), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27781,13 +29654,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23151] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(698), 2, + ACTIONS(750), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(700), 45, + ACTIONS(752), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27833,13 +29712,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23206] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(702), 2, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(704), 45, + ACTIONS(756), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27885,13 +29770,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23261] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(706), 2, + ACTIONS(758), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(708), 45, + ACTIONS(760), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27937,13 +29828,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23316] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(654), 2, + ACTIONS(762), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(656), 45, + ACTIONS(764), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27989,13 +29886,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23371] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(710), 2, + ACTIONS(766), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(712), 45, + ACTIONS(768), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28041,13 +29944,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23426] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(714), 2, + ACTIONS(770), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(716), 45, + ACTIONS(772), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28093,13 +30002,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23481] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(718), 2, + ACTIONS(774), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(720), 45, + ACTIONS(776), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28145,13 +30060,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23536] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(722), 2, + ACTIONS(778), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(724), 45, + ACTIONS(780), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28197,13 +30118,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23591] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(726), 2, + ACTIONS(782), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 45, + ACTIONS(784), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28249,13 +30176,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23646] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(730), 2, + ACTIONS(786), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(732), 45, + ACTIONS(788), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28301,13 +30234,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23701] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(734), 2, + ACTIONS(790), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(736), 45, + ACTIONS(792), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28353,13 +30292,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23756] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(738), 2, + ACTIONS(794), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(740), 45, + ACTIONS(796), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28405,13 +30350,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23811] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(742), 2, + ACTIONS(798), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(744), 45, + ACTIONS(800), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28457,13 +30408,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23866] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(746), 2, + ACTIONS(802), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 45, + ACTIONS(804), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28509,13 +30466,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23921] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(750), 2, + ACTIONS(806), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(752), 45, + ACTIONS(808), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28561,71 +30524,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23976] = 9, - 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, - 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, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [24043] = 3, - ACTIONS(286), 1, + [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(754), 2, + ACTIONS(810), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(756), 45, + ACTIONS(812), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28671,13 +30582,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24098] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(758), 2, + ACTIONS(814), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(760), 45, + ACTIONS(816), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28723,13 +30640,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24153] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(762), 2, + ACTIONS(818), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 45, + ACTIONS(820), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28775,13 +30698,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24208] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(766), 2, + ACTIONS(822), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 45, + ACTIONS(824), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28827,13 +30756,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24263] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(770), 2, + ACTIONS(826), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(772), 45, + ACTIONS(828), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28879,13 +30814,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24318] = 3, - ACTIONS(286), 1, + [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, - ACTIONS(774), 2, + 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, + sym_comment, + ACTIONS(830), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(776), 45, + ACTIONS(832), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28931,13 +30936,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24373] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(778), 2, + ACTIONS(834), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(780), 45, + ACTIONS(836), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28983,13 +30994,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24428] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(782), 2, + ACTIONS(838), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(784), 45, + ACTIONS(840), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29035,13 +31052,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24483] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(786), 2, + ACTIONS(842), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(788), 45, + ACTIONS(844), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29087,13 +31110,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24538] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(790), 2, + ACTIONS(846), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(792), 45, + ACTIONS(848), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29139,13 +31168,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24593] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(794), 2, + ACTIONS(692), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(796), 45, + ACTIONS(694), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29191,13 +31226,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24648] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(798), 2, + ACTIONS(692), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(800), 45, + ACTIONS(694), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29243,13 +31284,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24703] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(802), 2, + ACTIONS(850), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(804), 45, + ACTIONS(852), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29295,13 +31342,97 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24758] = 3, - ACTIONS(286), 1, + [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, + anon_sym_struct, + ACTIONS(37), 1, + anon_sym_interface, + ACTIONS(370), 1, + anon_sym_LBRACE, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(856), 1, + anon_sym_DOT, + ACTIONS(859), 1, + anon_sym_LPAREN, + ACTIONS(863), 1, + anon_sym_COMMA, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(868), 1, + anon_sym_LBRACK, + ACTIONS(871), 1, + anon_sym_RBRACK, + ACTIONS(874), 1, + anon_sym_STAR, + ACTIONS(877), 1, + anon_sym_map, + ACTIONS(879), 1, + anon_sym_chan, + ACTIONS(881), 1, + anon_sym_LT_DASH, + STATE(285), 1, sym_comment, - ACTIONS(806), 2, + 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_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, + 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, + [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, + sym_comment, + ACTIONS(883), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(808), 45, + ACTIONS(885), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29347,13 +31478,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24813] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(810), 2, + ACTIONS(887), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(812), 45, + ACTIONS(889), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29399,13 +31536,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24868] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(814), 2, + ACTIONS(891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(816), 45, + ACTIONS(893), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29451,13 +31594,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24923] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(726), 2, + ACTIONS(895), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 45, + ACTIONS(897), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29503,81 +31652,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [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, + [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, sym_comment, - ACTIONS(726), 2, + ACTIONS(899), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 45, + ACTIONS(901), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29623,13 +31710,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25120] = 3, - ACTIONS(286), 1, + [27278] = 6, + 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(848), 2, + ACTIONS(903), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(850), 45, + ACTIONS(905), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29675,13 +31768,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25175] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(852), 2, + ACTIONS(907), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(854), 45, + ACTIONS(909), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29727,85 +31826,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25230] = 23, + [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, sym_comment, - 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, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(887), 45, + ACTIONS(913), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29851,282 +31884,157 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25380] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(889), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(891), 45, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, + [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, anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(724), 1, 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, - 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, - [25435] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(893), 2, - ts_builtin_sym_end, + ACTIONS(738), 1, + anon_sym_AMP_AMP, + ACTIONS(915), 1, anon_sym_LF, - ACTIONS(895), 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, - 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, - [25490] = 3, - ACTIONS(286), 1, + STATE(294), 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, - 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, + STATE(329), 1, + sym_argument_list, + STATE(1183), 1, + sym_type_arguments, + ACTIONS(728), 4, + anon_sym_PIPE, 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_STAR, 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_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(917), 22, anon_sym_SEMI, - anon_sym_package, - anon_sym_import, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACE, + 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_DOT, + ACTIONS(718), 1, anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(724), 1, anon_sym_LBRACK, - anon_sym_type, + ACTIONS(915), 1, + anon_sym_LF, + STATE(295), 1, + sym_comment, + STATE(329), 1, + sym_argument_list, + STATE(1183), 1, + sym_type_arguments, + ACTIONS(726), 7, 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, - [25600] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(907), 45, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(917), 33, 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_COMMA, + anon_sym_EQ, + 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, - [25655] = 8, - ACTIONS(286), 1, - sym_comment, - ACTIONS(822), 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, + [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, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(915), 1, anon_sym_LF, - STATE(322), 1, + STATE(296), 1, + sym_comment, + STATE(329), 1, sym_argument_list, - STATE(1180), 1, + STATE(1183), 1, sym_type_arguments, - ACTIONS(911), 40, + ACTIONS(917), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -30167,36 +32075,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25719] = 12, - ACTIONS(286), 1, - sym_comment, - ACTIONS(822), 1, + [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, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(844), 1, - anon_sym_AMP_AMP, - ACTIONS(913), 1, + ACTIONS(915), 1, anon_sym_LF, - STATE(322), 1, + STATE(297), 1, + sym_comment, + STATE(329), 1, sym_argument_list, - STATE(1180), 1, + STATE(1183), 1, sym_type_arguments, - ACTIONS(834), 4, + ACTIONS(728), 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, + ACTIONS(726), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30204,7 +32109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 22, + ACTIONS(917), 29, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -30226,35 +32131,48 @@ 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, - [25791] = 11, - ACTIONS(286), 1, - sym_comment, - ACTIONS(822), 1, + [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, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(915), 1, anon_sym_LF, - STATE(322), 1, + STATE(298), 1, + sym_comment, + STATE(329), 1, sym_argument_list, - STATE(1180), 1, + STATE(1183), 1, sym_type_arguments, - ACTIONS(834), 4, + ACTIONS(728), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(842), 6, + 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(832), 7, + ACTIONS(726), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30262,7 +32180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 23, + ACTIONS(917), 23, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -30286,39 +32204,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25861] = 10, - ACTIONS(286), 1, - sym_comment, - ACTIONS(822), 1, + [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, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(718), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(724), 1, anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(919), 1, anon_sym_LF, - STATE(322), 1, + STATE(299), 1, + sym_comment, + STATE(329), 1, sym_argument_list, - STATE(1180), 1, + STATE(1183), 1, sym_type_arguments, - ACTIONS(834), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - 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), 29, + ACTIONS(921), 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, @@ -30336,63 +32249,15 @@ 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, - [25929] = 9, - 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(322), 1, - sym_argument_list, - STATE(1180), 1, - sym_type_arguments, - ACTIONS(832), 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, - ACTIONS(915), 33, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - 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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -30401,10 +32266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25995] = 3, + [27928] = 6, 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(75), 16, + ACTIONS(79), 16, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -30421,7 +32292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_imaginary_literal, sym_rune_literal, - ACTIONS(917), 30, + ACTIONS(923), 30, anon_sym_package, anon_sym_import, anon_sym_const, @@ -30452,25 +32323,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [26049] = 8, - ACTIONS(286), 1, + [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, + anon_sym_LF, + STATE(301), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(780), 44, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(830), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LF, - 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_LBRACK, anon_sym_STAR, anon_sym_RBRACE, anon_sym_PIPE, @@ -30489,6 +32359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_else, anon_sym_case, anon_sym_default, anon_sym_PLUS, @@ -30508,15 +32379,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26113] = 3, - ACTIONS(286), 1, + [28053] = 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, + ACTIONS(722), 1, + anon_sym_EQ, + ACTIONS(925), 1, + anon_sym_DOT, + ACTIONS(927), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + anon_sym_COMMA, + ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(937), 1, + 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(302), 1, sym_comment, - ACTIONS(802), 1, + STATE(378), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(884), 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, + [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, anon_sym_LF, - ACTIONS(804), 44, + ACTIONS(953), 1, + anon_sym_LPAREN, + STATE(303), 1, + sym_comment, + STATE(329), 1, + sym_special_argument_list, + ACTIONS(654), 42, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, @@ -30538,7 +32493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_else, anon_sym_case, anon_sym_default, anon_sym_PLUS, @@ -30558,55 +32512,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26166] = 22, + [28219] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 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(818), 1, + ACTIONS(712), 1, anon_sym_SEMI, - ACTIONS(828), 1, + ACTIONS(722), 1, anon_sym_EQ, - ACTIONS(919), 1, + ACTIONS(925), 1, anon_sym_DOT, - ACTIONS(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(923), 1, + ACTIONS(929), 1, anon_sym_COMMA, - ACTIONS(925), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(937), 1, anon_sym_LT_DASH, - ACTIONS(935), 1, + ACTIONS(941), 1, anon_sym_PLUS_PLUS, - ACTIONS(937), 1, - anon_sym_DASH_DASH, ACTIONS(943), 1, + anon_sym_DASH_DASH, + ACTIONS(949), 1, anon_sym_AMP_AMP, - ACTIONS(945), 1, + ACTIONS(951), 1, anon_sym_PIPE_PIPE, - STATE(358), 1, + STATE(304), 1, + sym_comment, + STATE(378), 1, sym_argument_list, STATE(755), 1, aux_sym_expression_list_repeat1, - STATE(933), 1, + STATE(871), 1, sym_block, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(941), 2, + ACTIONS(947), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(935), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(939), 4, + ACTIONS(945), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(927), 7, + ACTIONS(933), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30614,7 +32574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(933), 12, + ACTIONS(939), 12, anon_sym_COLON_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -30627,18 +32587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26257] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(627), 1, + [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, - ACTIONS(947), 1, - anon_sym_LPAREN, - STATE(322), 1, - sym_special_argument_list, - ACTIONS(629), 42, + 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, @@ -30660,6 +32623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_else, anon_sym_case, anon_sym_default, anon_sym_PLUS, @@ -30679,12 +32643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26314] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(722), 1, + [28381] = 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, - ACTIONS(724), 44, + STATE(306), 1, + sym_comment, + ACTIONS(957), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30709,7 +32679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_else, anon_sym_case, anon_sym_default, anon_sym_PLUS, @@ -30729,81 +32698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26367] = 22, + [28442] = 6, ACTIONS(3), 1, - sym_comment, - 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(959), 1, anon_sym_LF, - ACTIONS(951), 43, + STATE(307), 1, + sym_comment, + ACTIONS(961), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30847,12 +32753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26510] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(953), 1, + [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, - ACTIONS(955), 43, + STATE(308), 1, + sym_comment, + ACTIONS(965), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30896,12 +32808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26562] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(957), 1, + [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, - ACTIONS(959), 43, + STATE(309), 1, + sym_comment, + ACTIONS(969), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30945,61 +32863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26614] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(750), 1, + [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, - ACTIONS(752), 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, - [26666] = 3, - ACTIONS(286), 1, + STATE(310), 1, sym_comment, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(963), 43, + ACTIONS(973), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31043,12 +32918,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26718] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(965), 1, + [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, - ACTIONS(967), 43, + STATE(311), 1, + sym_comment, + ACTIONS(977), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31092,12 +32973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26770] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(969), 1, + [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, - ACTIONS(971), 43, + STATE(312), 1, + sym_comment, + ACTIONS(981), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31141,12 +33028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26822] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(973), 1, + [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, - ACTIONS(975), 43, + STATE(313), 1, + sym_comment, + ACTIONS(985), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31190,12 +33083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26874] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(977), 1, + [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, - ACTIONS(979), 43, + STATE(314), 1, + sym_comment, + ACTIONS(989), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31239,12 +33138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26926] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(981), 1, + [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, - ACTIONS(983), 43, + STATE(315), 1, + sym_comment, + ACTIONS(993), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31288,12 +33193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26978] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(985), 1, + [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, - ACTIONS(987), 43, + STATE(316), 1, + sym_comment, + ACTIONS(997), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31337,12 +33248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27030] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(989), 1, + [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, - ACTIONS(991), 43, + STATE(317), 1, + sym_comment, + ACTIONS(792), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31386,12 +33303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27082] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(993), 1, + [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, - ACTIONS(995), 43, + STATE(318), 1, + sym_comment, + ACTIONS(1001), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31435,12 +33358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27134] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(997), 1, + [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, - ACTIONS(999), 43, + STATE(319), 1, + sym_comment, + ACTIONS(1005), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31484,12 +33413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27186] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(627), 1, + [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, - ACTIONS(629), 43, + STATE(320), 1, + sym_comment, + ACTIONS(1009), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31533,12 +33468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27238] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1001), 1, + [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, - ACTIONS(1003), 43, + STATE(321), 1, + sym_comment, + ACTIONS(1013), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31582,12 +33523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27290] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1005), 1, + [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, - ACTIONS(1007), 43, + STATE(322), 1, + sym_comment, + ACTIONS(1017), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31631,12 +33578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27342] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1009), 1, + [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, - ACTIONS(1011), 43, + STATE(323), 1, + sym_comment, + ACTIONS(1021), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31680,53 +33633,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27394] = 21, + [29479] = 24, ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(712), 1, anon_sym_SEMI, - ACTIONS(828), 1, + ACTIONS(722), 1, anon_sym_EQ, - ACTIONS(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(923), 1, + ACTIONS(929), 1, anon_sym_COMMA, - ACTIONS(925), 1, - anon_sym_LBRACK, ACTIONS(931), 1, + anon_sym_LBRACK, + ACTIONS(937), 1, anon_sym_LT_DASH, - ACTIONS(935), 1, + ACTIONS(941), 1, anon_sym_PLUS_PLUS, - ACTIONS(937), 1, - anon_sym_DASH_DASH, ACTIONS(943), 1, + anon_sym_DASH_DASH, + ACTIONS(949), 1, anon_sym_AMP_AMP, - ACTIONS(945), 1, + ACTIONS(951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1013), 1, + ACTIONS(1023), 1, anon_sym_DOT, - ACTIONS(1015), 1, + ACTIONS(1025), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(324), 1, + sym_comment, + STATE(378), 1, sym_argument_list, STATE(755), 1, aux_sym_expression_list_repeat1, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(941), 2, + ACTIONS(947), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(935), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(939), 4, + ACTIONS(945), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(927), 7, + ACTIONS(933), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -31734,7 +33693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(933), 12, + ACTIONS(939), 12, anon_sym_COLON_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -31747,12 +33706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27482] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1017), 1, + [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, - ACTIONS(1019), 43, + STATE(325), 1, + sym_comment, + ACTIONS(1029), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31796,12 +33761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27534] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1021), 1, + [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, anon_sym_LF, - ACTIONS(1023), 43, + STATE(326), 1, + sym_comment, + ACTIONS(1033), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31845,12 +33816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27586] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1025), 1, + [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, - ACTIONS(1027), 43, + STATE(327), 1, + sym_comment, + ACTIONS(1037), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31894,12 +33871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27638] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1029), 1, + [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, - ACTIONS(1031), 43, + STATE(328), 1, + sym_comment, + ACTIONS(1041), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31943,12 +33926,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27690] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1033), 1, + [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, - ACTIONS(1035), 43, + STATE(329), 1, + sym_comment, + ACTIONS(1045), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31992,12 +33981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27742] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1037), 1, + [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, - ACTIONS(1039), 43, + STATE(330), 1, + sym_comment, + ACTIONS(1049), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32041,12 +34036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27794] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1041), 1, + [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, - ACTIONS(1043), 43, + STATE(331), 1, + sym_comment, + ACTIONS(1053), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32090,12 +34091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27846] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1045), 1, + [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, - ACTIONS(1047), 43, + STATE(332), 1, + sym_comment, + ACTIONS(1057), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32139,12 +34146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27898] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1049), 1, + [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, - ACTIONS(1051), 43, + STATE(333), 1, + sym_comment, + ACTIONS(812), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32188,12 +34201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27950] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1053), 1, + [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, - ACTIONS(1055), 43, + STATE(334), 1, + sym_comment, + ACTIONS(1061), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32237,12 +34256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28002] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1057), 1, + [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, - ACTIONS(1059), 43, + STATE(335), 1, + sym_comment, + ACTIONS(654), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32286,12 +34311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28054] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1061), 1, + [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, - ACTIONS(1063), 43, + STATE(336), 1, + sym_comment, + ACTIONS(1065), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32335,12 +34366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28106] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(690), 1, + [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, - ACTIONS(692), 43, + STATE(337), 1, + sym_comment, + ACTIONS(1069), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32384,12 +34421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28158] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1065), 1, + [30369] = 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, - ACTIONS(1067), 43, + STATE(338), 1, + sym_comment, + ACTIONS(1073), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32433,20 +34476,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28210] = 8, + [30430] = 23, 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, + anon_sym_EQ, + ACTIONS(925), 1, + anon_sym_DOT, + ACTIONS(927), 1, + anon_sym_LPAREN, + ACTIONS(929), 1, + anon_sym_COMMA, + ACTIONS(931), 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, - ACTIONS(858), 1, + STATE(378), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + 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, + [30524] = 11, + 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(873), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(931), 1, anon_sym_LBRACK, - STATE(357), 1, - sym_literal_value, - STATE(817), 1, + STATE(340), 1, + sym_comment, + STATE(378), 1, + sym_argument_list, + STATE(1127), 1, sym_type_arguments, - ACTIONS(629), 14, + ACTIONS(917), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -32461,7 +34581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 24, + ACTIONS(915), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32486,37 +34606,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28271] = 13, + [30594] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 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(919), 1, + ACTIONS(925), 1, anon_sym_DOT, - ACTIONS(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(931), 1, anon_sym_LBRACK, - ACTIONS(943), 1, + ACTIONS(949), 1, anon_sym_AMP_AMP, - STATE(358), 1, + STATE(341), 1, + sym_comment, + STATE(378), 1, sym_argument_list, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(941), 2, + ACTIONS(947), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(935), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(939), 4, + ACTIONS(945), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(927), 7, + ACTIONS(933), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32524,7 +34650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 19, + ACTIONS(915), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32544,35 +34670,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_PIPE, - [28342] = 12, + [30674] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 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(919), 1, + ACTIONS(925), 1, anon_sym_DOT, - ACTIONS(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(931), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(342), 1, + sym_comment, + STATE(378), 1, sym_argument_list, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(941), 2, + ACTIONS(947), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(935), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(939), 4, + ACTIONS(945), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(927), 7, + ACTIONS(933), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32580,7 +34712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 20, + ACTIONS(915), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32601,37 +34733,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28411] = 10, + [30752] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 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(921), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(1077), 1, anon_sym_LBRACK, - STATE(358), 1, - sym_argument_list, - STATE(1146), 1, + STATE(343), 1, + sym_comment, + STATE(377), 1, + sym_literal_value, + STATE(828), 1, sym_type_arguments, - ACTIONS(915), 3, + ACTIONS(654), 14, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(929), 4, + anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - 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(913), 24, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32656,101 +34792,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28476] = 20, + [30822] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(828), 1, - anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_DOT, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(923), 1, - anon_sym_COMMA, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(925), 1, - anon_sym_LBRACK, - 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(755), 1, - aux_sym_expression_list_repeat1, - 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, - [28561] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 1, anon_sym_DOT, - ACTIONS(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(931), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(344), 1, + sym_comment, + STATE(378), 1, sym_argument_list, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(915), 7, + ACTIONS(921), 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(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(913), 24, + anon_sym_LT, + anon_sym_GT, + ACTIONS(919), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32775,35 +34851,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28624] = 8, + [30892] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 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(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(931), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(345), 1, + sym_comment, + STATE(378), 1, sym_argument_list, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(915), 14, + ACTIONS(917), 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(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, - anon_sym_LT, - anon_sym_GT, - ACTIONS(913), 24, + ACTIONS(915), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32828,35 +34911,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28685] = 8, + [30964] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 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(921), 1, + ACTIONS(927), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(931), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(346), 1, + sym_comment, + STATE(378), 1, sym_argument_list, - STATE(1146), 1, + STATE(1127), 1, sym_type_arguments, - ACTIONS(911), 14, + ACTIONS(917), 3, anon_sym_EQ, - anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(935), 4, 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, - anon_sym_LT, - anon_sym_GT, - ACTIONS(909), 24, + ACTIONS(915), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32881,14 +34972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28746] = 5, + [31038] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(1074), 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(358), 1, + STATE(347), 1, + sym_comment, + STATE(378), 1, sym_special_argument_list, - ACTIONS(629), 14, + ACTIONS(654), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -32903,7 +35000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 26, + ACTIONS(652), 26, anon_sym_SEMI, anon_sym_DOT, anon_sym_COMMA, @@ -32930,10 +35027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28800] = 3, + [31101] = 6, 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(804), 14, + ACTIONS(997), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -32948,7 +35051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 27, + ACTIONS(995), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32976,10 +35079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28849] = 3, + [31159] = 6, 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(959), 14, + ACTIONS(1061), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -32994,7 +35103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 27, + ACTIONS(1059), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33022,10 +35131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28898] = 3, + [31217] = 6, 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(1063), 14, + ACTIONS(1009), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33040,7 +35155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 27, + ACTIONS(1007), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33068,10 +35183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28947] = 3, + [31275] = 6, 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(692), 14, + ACTIONS(981), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33086,7 +35207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 27, + ACTIONS(979), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33114,10 +35235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28996] = 3, + [31333] = 6, 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(1055), 14, + ACTIONS(1073), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33132,7 +35259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 27, + ACTIONS(1071), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33160,10 +35287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29045] = 3, + [31391] = 6, 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(1035), 14, + ACTIONS(985), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33178,7 +35311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 27, + ACTIONS(983), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33206,10 +35339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29094] = 3, + [31449] = 6, 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(1011), 14, + ACTIONS(993), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33224,7 +35363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 27, + ACTIONS(991), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33252,10 +35391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29143] = 3, + [31507] = 6, 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(1067), 14, + ACTIONS(1037), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33270,7 +35415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 27, + ACTIONS(1035), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33298,10 +35443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29192] = 3, + [31565] = 6, 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(971), 14, + ACTIONS(961), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33316,7 +35467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(969), 27, + ACTIONS(959), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33344,10 +35495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29241] = 3, + [31623] = 6, 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(951), 14, + ACTIONS(957), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33362,7 +35519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 27, + ACTIONS(955), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33390,10 +35547,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29290] = 3, + [31681] = 6, 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(1007), 14, + ACTIONS(965), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33408,7 +35571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 27, + ACTIONS(963), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33436,10 +35599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29339] = 3, + [31739] = 6, 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(724), 14, + ACTIONS(1021), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33454,7 +35623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 27, + ACTIONS(1019), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33482,10 +35651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29388] = 3, + [31797] = 6, 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(752), 14, + ACTIONS(1013), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33500,7 +35675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 27, + ACTIONS(1011), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33528,10 +35703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29437] = 3, + [31855] = 6, 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(1027), 14, + ACTIONS(1001), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33546,7 +35727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 27, + ACTIONS(999), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33574,10 +35755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29486] = 3, + [31913] = 6, 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(629), 14, + ACTIONS(780), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33592,7 +35779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 27, + ACTIONS(778), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33620,10 +35807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29535] = 3, + [31971] = 6, 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(1019), 14, + ACTIONS(989), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33638,7 +35831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 27, + ACTIONS(987), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33666,10 +35859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29584] = 3, + [32029] = 6, 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(963), 14, + ACTIONS(1005), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33684,7 +35883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 27, + ACTIONS(1003), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33712,10 +35911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29633] = 3, + [32087] = 6, 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(983), 14, + ACTIONS(973), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33730,7 +35935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 27, + ACTIONS(971), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33758,10 +35963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29682] = 3, + [32145] = 6, 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(1059), 14, + ACTIONS(1029), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33776,7 +35987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 27, + ACTIONS(1027), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33804,10 +36015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29731] = 3, + [32203] = 6, 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(1043), 14, + ACTIONS(812), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33822,7 +36039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 27, + ACTIONS(810), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33850,10 +36067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29780] = 3, + [32261] = 6, 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(1039), 14, + ACTIONS(969), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33868,7 +36091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 27, + ACTIONS(967), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33896,10 +36119,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29829] = 3, + [32319] = 6, 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(967), 14, + ACTIONS(1041), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33914,7 +36143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 27, + ACTIONS(1039), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33942,10 +36171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29878] = 3, + [32377] = 6, 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(975), 14, + ACTIONS(1033), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33960,7 +36195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 27, + ACTIONS(1031), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33988,10 +36223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29927] = 3, + [32435] = 6, 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(955), 14, + ACTIONS(977), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34006,7 +36247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 27, + ACTIONS(975), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34034,10 +36275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [29976] = 3, + [32493] = 6, 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(1023), 14, + ACTIONS(1057), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34052,7 +36299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 27, + ACTIONS(1055), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34080,10 +36327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30025] = 3, + [32551] = 6, 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(995), 14, + ACTIONS(1065), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34098,7 +36351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 27, + ACTIONS(1063), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34126,10 +36379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30074] = 3, + [32609] = 6, 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(1047), 14, + ACTIONS(1053), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34144,7 +36403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 27, + ACTIONS(1051), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34172,10 +36431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30123] = 3, + [32667] = 6, 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(999), 14, + ACTIONS(1049), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34190,7 +36455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 27, + ACTIONS(1047), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34218,10 +36483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30172] = 3, + [32725] = 6, 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(991), 14, + ACTIONS(792), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34236,7 +36507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 27, + ACTIONS(790), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34264,10 +36535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30221] = 3, + [32783] = 6, 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(987), 14, + ACTIONS(1069), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34282,7 +36559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 27, + ACTIONS(1067), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34310,10 +36587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30270] = 3, + [32841] = 6, 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(1051), 14, + ACTIONS(1045), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34328,7 +36611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 27, + ACTIONS(1043), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34356,10 +36639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30319] = 3, + [32899] = 6, 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(979), 14, + ACTIONS(654), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34374,7 +36663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 27, + ACTIONS(652), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34402,10 +36691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30368] = 3, + [32957] = 6, 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(1003), 14, + ACTIONS(1017), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34420,7 +36715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 27, + ACTIONS(1015), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34448,10 +36743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30417] = 3, + [33015] = 6, 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(1031), 14, + ACTIONS(820), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34466,7 +36767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 27, + ACTIONS(818), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34494,22 +36795,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30466] = 9, + [33073] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 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(873), 1, + ACTIONS(871), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_LBRACK, - ACTIONS(1076), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - STATE(394), 1, + STATE(382), 1, + sym_comment, + STATE(397), 1, sym_literal_value, - STATE(817), 1, + STATE(828), 1, sym_type_arguments, - ACTIONS(629), 14, + ACTIONS(654), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34524,7 +36831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 19, + ACTIONS(652), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34544,35 +36851,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30525] = 8, + [33141] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 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, anon_sym_DOT, - ACTIONS(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - STATE(408), 1, + ACTIONS(1098), 1, + anon_sym_AMP_AMP, + STATE(383), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(915), 14, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1096), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1092), 4, 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, - anon_sym_LT, - anon_sym_GT, - ACTIONS(913), 19, + ACTIONS(915), 14, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34586,41 +36909,43 @@ 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, - [30581] = 8, + [33216] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 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(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(384), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(911), 14, + ACTIONS(917), 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(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, - anon_sym_LT, - anon_sym_GT, - ACTIONS(909), 19, + ACTIONS(915), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34640,37 +36965,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30637] = 10, + [33283] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 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(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(385), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(915), 3, + ACTIONS(917), 14, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1086), 4, + anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - 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, - ACTIONS(913), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(915), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34690,35 +37019,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30697] = 12, + [33348] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 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(1078), 1, + ACTIONS(1084), 1, anon_sym_DOT, - ACTIONS(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(386), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(1090), 2, + ACTIONS(1096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1086), 4, + ACTIONS(1092), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1088), 4, + ACTIONS(1094), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1084), 7, + ACTIONS(1090), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -34726,7 +37061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 15, + ACTIONS(915), 15, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34742,45 +37077,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30761] = 13, + [33421] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(1078), 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(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_AMP_AMP, - STATE(408), 1, + STATE(387), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1086), 4, + ACTIONS(921), 14, + anon_sym_EQ, + anon_sym_STAR, 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, - ACTIONS(913), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(919), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34794,29 +37125,51 @@ 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, - [30827] = 9, + [33486] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 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(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - STATE(408), 1, + ACTIONS(1098), 1, + anon_sym_AMP_AMP, + ACTIONS(1102), 1, + anon_sym_EQ, + ACTIONS(1104), 1, + anon_sym_PIPE_PIPE, + STATE(388), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(915), 7, - anon_sym_EQ, + ACTIONS(1096), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1092), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1084), 7, + 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, @@ -34824,7 +37177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 19, + ACTIONS(1100), 13, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34838,45 +37191,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, - [30885] = 14, + [33563] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 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(1080), 1, + ACTIONS(1086), 1, anon_sym_LPAREN, - ACTIONS(1082), 1, + ACTIONS(1088), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_AMP_AMP, - ACTIONS(1096), 1, - anon_sym_EQ, - ACTIONS(1098), 1, - anon_sym_PIPE_PIPE, - STATE(408), 1, + STATE(389), 1, + sym_comment, + STATE(396), 1, sym_argument_list, - STATE(1127), 1, + STATE(1141), 1, sym_type_arguments, - ACTIONS(1090), 2, + ACTIONS(917), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1086), 4, + ACTIONS(1092), 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, + ACTIONS(1090), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -34884,7 +37227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1094), 13, + ACTIONS(915), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34898,14 +37241,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30953] = 5, + 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, - sym_comment, - ACTIONS(1100), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1106), 1, anon_sym_LPAREN, - STATE(408), 1, + STATE(390), 1, + sym_comment, + STATE(396), 1, sym_special_argument_list, - ACTIONS(629), 14, + ACTIONS(654), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34920,7 +37275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 21, + ACTIONS(652), 21, anon_sym_DOT, anon_sym_COMMA, anon_sym_LBRACK, @@ -34942,10 +37297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31002] = 3, + [33690] = 6, 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(1059), 14, + ACTIONS(981), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34960,7 +37321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 22, + ACTIONS(979), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -34983,10 +37344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31046] = 3, + [33743] = 6, 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(629), 14, + ACTIONS(965), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35001,7 +37368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 22, + ACTIONS(963), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35024,10 +37391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31090] = 3, + [33796] = 6, 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(1067), 14, + ACTIONS(1037), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35042,7 +37415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 22, + ACTIONS(1035), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35065,10 +37438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31134] = 3, + [33849] = 6, 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(951), 14, + ACTIONS(1033), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35083,7 +37462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 22, + ACTIONS(1031), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35106,10 +37485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31178] = 3, + [33902] = 6, 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(963), 14, + ACTIONS(1073), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35124,7 +37509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 22, + ACTIONS(1071), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35147,10 +37532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31222] = 3, + [33955] = 6, 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(983), 14, + ACTIONS(1045), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35165,7 +37556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 22, + ACTIONS(1043), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35188,10 +37579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31266] = 3, + [34008] = 6, 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(1011), 14, + ACTIONS(1069), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35206,7 +37603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 22, + ACTIONS(1067), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35229,10 +37626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31310] = 3, + [34061] = 6, 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(1035), 14, + ACTIONS(1057), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35247,7 +37650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 22, + ACTIONS(1055), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35270,10 +37673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31354] = 3, + [34114] = 6, 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(804), 14, + ACTIONS(1065), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35288,7 +37697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 22, + ACTIONS(1063), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35311,10 +37720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31398] = 3, + [34167] = 6, 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(971), 14, + ACTIONS(1009), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35329,7 +37744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(969), 22, + ACTIONS(1007), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35352,10 +37767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31442] = 3, + [34220] = 6, 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(959), 14, + ACTIONS(977), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35370,7 +37791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 22, + ACTIONS(975), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35393,10 +37814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31486] = 3, + [34273] = 6, 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(1039), 14, + ACTIONS(1041), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35411,7 +37838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 22, + ACTIONS(1039), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35434,10 +37861,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31530] = 3, + [34326] = 6, 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(1023), 14, + ACTIONS(654), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35452,7 +37885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 22, + ACTIONS(652), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35475,10 +37908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31574] = 3, + [34379] = 6, 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(979), 14, + ACTIONS(780), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35493,7 +37932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 22, + ACTIONS(778), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35516,10 +37955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31618] = 3, + [34432] = 6, 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(1063), 14, + ACTIONS(1021), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35534,7 +37979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 22, + ACTIONS(1019), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35557,10 +38002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31662] = 3, + [34485] = 6, 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(991), 14, + ACTIONS(989), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35575,7 +38026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 22, + ACTIONS(987), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35598,10 +38049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31706] = 3, + [34538] = 6, 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(692), 14, + ACTIONS(1053), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35616,7 +38073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 22, + ACTIONS(1051), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35639,10 +38096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31750] = 3, + [34591] = 6, 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(1007), 14, + ACTIONS(1049), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35657,7 +38120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 22, + ACTIONS(1047), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35680,10 +38143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31794] = 3, + [34644] = 6, 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(995), 14, + ACTIONS(973), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35698,7 +38167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 22, + ACTIONS(971), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35721,10 +38190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31838] = 3, + [34697] = 6, 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(724), 14, + ACTIONS(820), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35739,7 +38214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 22, + ACTIONS(818), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35762,10 +38237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31882] = 3, + [34750] = 6, 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(999), 14, + ACTIONS(957), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35780,7 +38261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 22, + ACTIONS(955), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35803,10 +38284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31926] = 3, + [34803] = 6, 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(1055), 14, + ACTIONS(1017), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35821,7 +38308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 22, + ACTIONS(1015), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35844,10 +38331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [31970] = 3, + [34856] = 6, 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(987), 14, + ACTIONS(1013), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35862,7 +38355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 22, + ACTIONS(1011), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35885,10 +38378,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32014] = 3, + [34909] = 6, 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(1003), 14, + ACTIONS(1001), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35903,7 +38402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 22, + ACTIONS(999), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35926,10 +38425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32058] = 3, + [34962] = 6, 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(1031), 14, + ACTIONS(961), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35944,7 +38449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 22, + ACTIONS(959), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35967,10 +38472,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32102] = 3, + [35015] = 6, 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(1019), 14, + ACTIONS(812), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35985,7 +38496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 22, + ACTIONS(810), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36008,10 +38519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32146] = 3, + [35068] = 6, 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(1051), 14, + ACTIONS(792), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36026,7 +38543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 22, + ACTIONS(790), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36049,10 +38566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32190] = 3, + [35121] = 6, 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(967), 14, + ACTIONS(1029), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36067,7 +38590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 22, + ACTIONS(1027), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36090,10 +38613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32234] = 3, + [35174] = 6, 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(1047), 14, + ACTIONS(1005), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36108,7 +38637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 22, + ACTIONS(1003), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36131,10 +38660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32278] = 3, + [35227] = 6, 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(955), 14, + ACTIONS(969), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36149,7 +38684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 22, + ACTIONS(967), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36172,10 +38707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32322] = 3, + [35280] = 6, 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(1027), 14, + ACTIONS(1061), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36190,7 +38731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 22, + ACTIONS(1059), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36213,10 +38754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32366] = 3, + [35333] = 6, 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(1043), 14, + ACTIONS(985), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36231,7 +38778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 22, + ACTIONS(983), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36254,10 +38801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32410] = 3, + [35386] = 6, 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(752), 14, + ACTIONS(993), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36272,7 +38825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 22, + ACTIONS(991), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36295,10 +38848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32454] = 3, + [35439] = 6, 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(975), 14, + ACTIONS(997), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36313,7 +38872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 22, + ACTIONS(995), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36336,64 +38895,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32498] = 8, + [35492] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 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(1104), 1, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(915), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(913), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [32550] = 8, - ACTIONS(3), 1, + STATE(425), 1, sym_comment, - ACTIONS(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(911), 7, + ACTIONS(921), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -36401,7 +38922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(909), 22, + ACTIONS(919), 22, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -36424,63 +38945,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32602] = 5, + [35553] = 11, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(1108), 1, - anon_sym_LPAREN, - STATE(429), 1, - sym_special_argument_list, - ACTIONS(629), 8, anon_sym_DOT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(627), 23, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1110), 1, + anon_sym_LPAREN, + ACTIONS(1112), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [32647] = 9, - ACTIONS(3), 1, + STATE(426), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(858), 1, - anon_sym_DOT, - ACTIONS(1069), 1, - anon_sym_LBRACK, - STATE(434), 1, - sym_literal_value, - STATE(817), 1, + STATE(443), 1, + sym_argument_list, + STATE(1177), 1, sym_type_arguments, - ACTIONS(873), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(629), 7, + ACTIONS(917), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -36488,44 +38972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_RBRACE, - 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, - [32700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 8, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1005), 24, + ACTIONS(915), 22, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_STAR, @@ -36545,47 +38995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32740] = 3, + [35614] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(1043), 8, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1041), 24, - anon_sym_SEMI, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1114), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [32780] = 3, - ACTIONS(3), 1, + STATE(427), 1, sym_comment, - ACTIONS(1027), 8, + STATE(443), 1, + sym_special_argument_list, + ACTIONS(654), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36594,9 +39017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 24, + ACTIONS(652), 23, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACK, @@ -36619,11 +39041,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32820] = 3, + [35668] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(967), 8, + 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(856), 1, anon_sym_DOT, + ACTIONS(1077), 1, + anon_sym_LBRACK, + STATE(428), 1, + sym_comment, + STATE(441), 1, + sym_literal_value, + STATE(828), 1, + sym_type_arguments, + ACTIONS(871), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(654), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -36631,16 +39071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 24, + ACTIONS(652), 19, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON_EQ, anon_sym_PLUS, @@ -36656,10 +39091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32860] = 3, + [35730] = 6, 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(1063), 8, + ACTIONS(780), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36668,7 +39109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 24, + ACTIONS(778), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36693,10 +39134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32900] = 3, + [35779] = 6, 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(951), 8, + ACTIONS(997), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36705,7 +39152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 24, + ACTIONS(995), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36730,10 +39177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32940] = 3, + [35828] = 6, 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(1051), 8, + ACTIONS(1033), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36742,7 +39195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 24, + ACTIONS(1031), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36767,10 +39220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [32980] = 3, + [35877] = 6, 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(629), 8, + ACTIONS(973), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36779,7 +39238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 24, + ACTIONS(971), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36804,10 +39263,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33020] = 3, + [35926] = 6, 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(1019), 8, + ACTIONS(1073), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36816,7 +39281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 24, + ACTIONS(1071), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36841,10 +39306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33060] = 3, + [35975] = 6, 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(1067), 8, + ACTIONS(1041), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36853,7 +39324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 24, + ACTIONS(1039), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36878,10 +39349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33100] = 3, + [36024] = 6, 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(1031), 8, + ACTIONS(977), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36890,7 +39367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 24, + ACTIONS(975), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36915,10 +39392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33140] = 3, + [36073] = 6, 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(1003), 8, + ACTIONS(812), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36927,7 +39410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 24, + ACTIONS(810), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36952,10 +39435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33180] = 3, + [36122] = 6, 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(1059), 8, + ACTIONS(1057), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36964,7 +39453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 24, + ACTIONS(1055), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36989,10 +39478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33220] = 3, + [36171] = 6, 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(1055), 8, + ACTIONS(961), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37001,7 +39496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 24, + ACTIONS(959), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37026,10 +39521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33260] = 3, + [36220] = 6, 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(692), 8, + ACTIONS(957), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37038,7 +39539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 24, + ACTIONS(955), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37063,10 +39564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33300] = 3, + [36269] = 6, 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(999), 8, + ACTIONS(1065), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37075,7 +39582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 24, + ACTIONS(1063), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37100,10 +39607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33340] = 3, + [36318] = 6, 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(995), 8, + ACTIONS(1069), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37112,7 +39625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 24, + ACTIONS(1067), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37137,10 +39650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33380] = 3, + [36367] = 6, 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(991), 8, + ACTIONS(1053), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37149,7 +39668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 24, + ACTIONS(1051), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37174,10 +39693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33420] = 3, + [36416] = 6, 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(987), 8, + ACTIONS(1045), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37186,7 +39711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 24, + ACTIONS(1043), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37211,10 +39736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33460] = 3, + [36465] = 6, 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(1047), 8, + ACTIONS(1021), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37223,7 +39754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 24, + ACTIONS(1019), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37248,10 +39779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33500] = 3, + [36514] = 6, 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(975), 8, + ACTIONS(1049), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37260,7 +39797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 24, + ACTIONS(1047), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37285,10 +39822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33540] = 3, + [36563] = 6, 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(724), 8, + ACTIONS(820), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37297,7 +39840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 24, + ACTIONS(818), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37322,10 +39865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33580] = 3, + [36612] = 6, 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(752), 8, + ACTIONS(1061), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37334,7 +39883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 24, + ACTIONS(1059), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37359,10 +39908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33620] = 3, + [36661] = 6, 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(804), 8, + ACTIONS(1017), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37371,7 +39926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 24, + ACTIONS(1015), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37396,10 +39951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33660] = 3, + [36710] = 6, 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(1035), 8, + ACTIONS(1013), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37408,7 +39969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 24, + ACTIONS(1011), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37433,10 +39994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33700] = 3, + [36759] = 6, 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(1011), 8, + ACTIONS(981), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37445,7 +40012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 24, + ACTIONS(979), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37470,10 +40037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33740] = 3, + [36808] = 6, 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(955), 8, + ACTIONS(965), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37482,7 +40055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 24, + ACTIONS(963), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37507,10 +40080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33780] = 3, + [36857] = 6, 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(963), 8, + ACTIONS(654), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37519,7 +40098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 24, + ACTIONS(652), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37544,10 +40123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33820] = 3, + [36906] = 6, 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(983), 8, + ACTIONS(969), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37556,7 +40141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 24, + ACTIONS(967), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37581,10 +40166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33860] = 3, + [36955] = 6, 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(971), 8, + ACTIONS(989), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37593,7 +40184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(969), 24, + ACTIONS(987), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37618,10 +40209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33900] = 3, + [37004] = 6, 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(979), 8, + ACTIONS(1037), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37630,7 +40227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 24, + ACTIONS(1035), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37655,10 +40252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33940] = 3, + [37053] = 6, 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(1023), 8, + ACTIONS(1029), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37667,7 +40270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 24, + ACTIONS(1027), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37692,10 +40295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33980] = 3, + [37102] = 6, 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(1039), 8, + ACTIONS(993), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37704,7 +40313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 24, + ACTIONS(991), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37729,10 +40338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34020] = 3, + [37151] = 6, 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(959), 8, + ACTIONS(985), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37741,7 +40356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 24, + ACTIONS(983), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37766,272 +40381,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34060] = 10, + [37200] = 6, 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(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1005), 8, anon_sym_DOT, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(915), 5, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1112), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(913), 14, + ACTIONS(1003), 24, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_RBRACE, 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, - [34113] = 9, - ACTIONS(286), 1, + [37249] = 6, + 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(627), 1, - anon_sym_LF, - ACTIONS(631), 1, + ACTIONS(1001), 8, anon_sym_DOT, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1116), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 24, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(999), 24, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, + anon_sym_COLON_EQ, 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, - [34164] = 12, + [37298] = 6, 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(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1009), 8, anon_sym_DOT, - ACTIONS(1118), 1, + anon_sym_EQ, anon_sym_PIPE, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1120), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(915), 4, - anon_sym_EQ, - anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1112), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(913), 11, + ACTIONS(1007), 24, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_RBRACE, 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, - [34221] = 14, + [37347] = 6, 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(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(792), 8, anon_sym_DOT, - ACTIONS(1118), 1, - anon_sym_PIPE, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(915), 2, anon_sym_EQ, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(1114), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(790), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 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(1112), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [37396] = 25, + 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, + anon_sym_LPAREN, + ACTIONS(662), 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, - ACTIONS(913), 7, - 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, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34282] = 15, + [37542] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, - anon_sym_AMP_AMP, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(465), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(917), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 6, + ACTIONS(915), 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, - [34345] = 15, - ACTIONS(286), 1, - sym_comment, - ACTIONS(933), 1, + [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, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1164), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1132), 1, + ACTIONS(1168), 1, anon_sym_COMMA, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, - ACTIONS(1144), 1, + ACTIONS(1180), 1, anon_sym_PIPE_PIPE, - STATE(536), 1, + STATE(466), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(827), 1, + STATE(835), 1, aux_sym_expression_list_repeat1, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(828), 4, + ACTIONS(722), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1138), 4, + ACTIONS(1174), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1140), 6, + 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(1136), 7, + ACTIONS(1172), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -38039,370 +40769,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [34408] = 22, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_LF, - ACTIONS(1152), 1, - anon_sym_DOT, - ACTIONS(1154), 1, + [37684] = 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(1156), 1, - anon_sym_COMMA, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1160), 1, + ACTIONS(1112), 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(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(1028), 1, - sym_interpreted_string_literal, - ACTIONS(1150), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - STATE(868), 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, - [34485] = 11, - ACTIONS(286), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1134), 1, - anon_sym_LBRACK, - STATE(536), 1, + STATE(443), 1, sym_argument_list, - STATE(1156), 1, + STATE(467), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1158), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(917), 5, + anon_sym_EQ, 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_COLON, 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, + ACTIONS(1152), 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, - ACTIONS(915), 17, + ACTIONS(915), 14, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, + anon_sym_COLON_EQ, 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, + [37746] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_DOT, - ACTIONS(873), 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(1069), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_literal_value, - STATE(817), 1, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1154), 1, + anon_sym_PIPE, + ACTIONS(1182), 1, + anon_sym_AMP_AMP, + STATE(443), 1, + sym_argument_list, + STATE(468), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(629), 7, + ACTIONS(917), 2, anon_sym_EQ, - anon_sym_PIPE, anon_sym_COLON, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 17, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(1156), 3, 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(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP_AMP, + ACTIONS(1152), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(915), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON_EQ, anon_sym_PIPE_PIPE, - [34639] = 10, - ACTIONS(286), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_LF, - ACTIONS(1128), 1, - anon_sym_DOT, - ACTIONS(1130), 1, + [37818] = 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, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - STATE(536), 1, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1154), 1, + anon_sym_PIPE, + STATE(443), 1, sym_argument_list, - STATE(1156), 1, + STATE(469), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1138), 4, - anon_sym_PIPE, + ACTIONS(1158), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1136), 7, + ACTIONS(917), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1152), 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, - ACTIONS(915), 13, + ACTIONS(915), 11, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + anon_sym_COLON_EQ, 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, - [34691] = 20, + [37884] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 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(931), 1, + ACTIONS(937), 1, anon_sym_LT_DASH, - ACTIONS(933), 1, + ACTIONS(939), 1, anon_sym_COLON_EQ, - ACTIONS(1180), 1, + ACTIONS(1184), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1186), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1188), 1, anon_sym_COMMA, - ACTIONS(1186), 1, - anon_sym_LBRACK, ACTIONS(1190), 1, + anon_sym_LBRACK, + ACTIONS(1194), 1, anon_sym_PIPE, - ACTIONS(1192), 1, + ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1202), 1, + ACTIONS(1206), 1, anon_sym_AMP_AMP, - ACTIONS(1204), 1, + ACTIONS(1208), 1, anon_sym_PIPE_PIPE, - STATE(572), 1, + STATE(470), 1, + sym_comment, + STATE(546), 1, sym_argument_list, - STATE(863), 1, + STATE(872), 1, aux_sym_expression_list_repeat1, - STATE(1168), 1, + STATE(1182), 1, sym_type_arguments, - ACTIONS(1196), 2, + ACTIONS(1200), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1200), 2, + ACTIONS(1204), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1194), 3, + ACTIONS(1198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1198), 4, + ACTIONS(1202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1188), 5, + ACTIONS(1192), 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(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, - STATE(778), 1, - sym_qualified_type, - STATE(803), 2, - sym_parameter_list, - sym__simple_type, - ACTIONS(371), 7, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - sym_raw_string_literal, - anon_sym_DQUOTE, - 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, - [34827] = 19, - ACTIONS(29), 1, - anon_sym_struct, + [37965] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, ACTIONS(33), 1, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(286), 1, - sym_comment, - ACTIONS(856), 1, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1208), 1, + ACTIONS(1210), 1, anon_sym_LF, - ACTIONS(1212), 1, - anon_sym_LPAREN, ACTIONS(1214), 1, - anon_sym_COMMA, + anon_sym_LPAREN, ACTIONS(1216), 1, - anon_sym_EQ, + anon_sym_COMMA, ACTIONS(1218), 1, - anon_sym_LBRACK, + anon_sym_EQ, ACTIONS(1220), 1, - anon_sym_STAR, + anon_sym_LBRACK, ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1224), 1, anon_sym_LT_DASH, - STATE(747), 1, + STATE(471), 1, + sym_comment, + STATE(748), 1, aux_sym_const_spec_repeat1, - STATE(789), 1, + STATE(793), 1, sym_qualified_type, - STATE(1185), 2, + STATE(1258), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(1210), 4, + ACTIONS(1212), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -38412,44 +41038,96 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [34897] = 13, - ACTIONS(286), 1, + [38044] = 12, + 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, + ACTIONS(1226), 1, + anon_sym_LBRACE, + STATE(472), 1, sym_comment, - ACTIONS(1094), 1, + STATE(569), 1, + sym_literal_value, + STATE(828), 1, + sym_type_arguments, + 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), 17, + anon_sym_COMMA, + 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, + [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(1128), 1, + ACTIONS(1164), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, - ACTIONS(1144), 1, - anon_sym_PIPE_PIPE, - STATE(536), 1, + STATE(473), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1174), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1096), 5, + ACTIONS(917), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1140), 6, + 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(1136), 7, + ACTIONS(1172), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -38457,43 +41135,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [34955] = 12, - ACTIONS(286), 1, - sym_comment, - ACTIONS(913), 1, + [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(1128), 1, + ACTIONS(1164), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, - STATE(536), 1, + STATE(474), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1174), 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_case, - anon_sym_default, - anon_sym_PIPE_PIPE, - ACTIONS(1140), 6, + 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(1136), 7, + 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, @@ -38501,89 +41184,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35011] = 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(1212), 1, - anon_sym_LPAREN, - ACTIONS(1214), 1, - anon_sym_COMMA, - ACTIONS(1218), 1, - anon_sym_LBRACK, - ACTIONS(1220), 1, - anon_sym_STAR, - ACTIONS(1222), 1, - anon_sym_LT_DASH, - ACTIONS(1224), 1, - anon_sym_LF, - ACTIONS(1228), 1, - anon_sym_EQ, - STATE(476), 1, - aux_sym_const_spec_repeat1, - STATE(789), 1, - sym_qualified_type, - STATE(1218), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(1226), 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, - [35081] = 8, - ACTIONS(286), 1, - sym_comment, - ACTIONS(913), 1, + [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, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1164), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - STATE(536), 1, + STATE(475), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(915), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_RBRACE, + ACTIONS(1174), 4, anon_sym_PIPE, - anon_sym_case, - anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + 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, + ACTIONS(917), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -38592,22 +41232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35129] = 8, - ACTIONS(286), 1, - sym_comment, - ACTIONS(909), 1, + [38292] = 11, + 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(1128), 1, + ACTIONS(1164), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - STATE(536), 1, + STATE(476), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(911), 24, + ACTIONS(921), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR, @@ -38632,151 +41278,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35177] = 10, + [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, + anon_sym_LF, + 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, + 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, + STATE(477), 1, sym_comment, - ACTIONS(1180), 1, + STATE(786), 1, + sym_qualified_type, + STATE(800), 2, + sym_parameter_list, + sym__simple_type, + ACTIONS(331), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + sym_raw_string_literal, + anon_sym_DQUOTE, + 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, + [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, + anon_sym_LF, + ACTIONS(1164), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - STATE(572), 1, + STATE(478), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1168), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(1196), 2, + ACTIONS(1172), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 5, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 5, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 12, + ACTIONS(917), 17, + anon_sym_SEMI, anon_sym_COMMA, - 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_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, - [35228] = 12, + [38481] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 1, - anon_sym_DOT, - ACTIONS(1182), 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, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, + anon_sym_map, + ACTIONS(879), 1, + anon_sym_chan, + ACTIONS(1214), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1216), 1, + anon_sym_COMMA, + ACTIONS(1220), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, - anon_sym_PIPE, - STATE(572), 1, - sym_argument_list, - STATE(1168), 1, - sym_type_arguments, - ACTIONS(1196), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1194), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(915), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 5, + ACTIONS(1222), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(913), 9, - anon_sym_COMMA, + ACTIONS(1224), 1, 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, + ACTIONS(1230), 1, + anon_sym_LF, + ACTIONS(1234), 1, + anon_sym_EQ, + STATE(471), 1, + aux_sym_const_spec_repeat1, + STATE(479), 1, sym_comment, - ACTIONS(1104), 1, + STATE(793), 1, + sym_qualified_type, + STATE(1215), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(1232), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + 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, + [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, + anon_sym_LF, + ACTIONS(1164), 1, + anon_sym_DOT, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1118), 1, - anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1180), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(480), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1129), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(1096), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1094), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(1120), 3, + ACTIONS(1174), 4, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1102), 5, + anon_sym_SEMI, + anon_sym_COMMA, + 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(1112), 5, + 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, - [35346] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(627), 1, + [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_LF, - ACTIONS(1232), 1, + ACTIONS(1164), 1, + anon_sym_DOT, + ACTIONS(1166), 1, anon_sym_LPAREN, - STATE(536), 1, - sym_special_argument_list, - ACTIONS(629), 26, + ACTIONS(1170), 1, + anon_sym_LBRACK, + STATE(481), 1, + sym_comment, + STATE(501), 1, + sym_argument_list, + STATE(1160), 1, + sym_type_arguments, + ACTIONS(917), 24, anon_sym_SEMI, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_STAR, anon_sym_RBRACE, anon_sym_PIPE, @@ -38799,43 +41533,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35387] = 13, - ACTIONS(286), 1, + [38684] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1186), 1, + anon_sym_LPAREN, + ACTIONS(1190), 1, + anon_sym_LBRACK, + ACTIONS(1194), 1, + anon_sym_PIPE, + ACTIONS(1206), 1, + anon_sym_AMP_AMP, + STATE(482), 1, sym_comment, - ACTIONS(1128), 1, + STATE(546), 1, + sym_argument_list, + STATE(1182), 1, + sym_type_arguments, + ACTIONS(917), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(1200), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1204), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1198), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(915), 4, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_PIPE_PIPE, + ACTIONS(1202), 4, + 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, + 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(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, - ACTIONS(1144), 1, + ACTIONS(1180), 1, anon_sym_PIPE_PIPE, - ACTIONS(1234), 1, + ACTIONS(1236), 1, anon_sym_LF, - STATE(536), 1, + STATE(483), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1174), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1236), 4, + ACTIONS(1238), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1140), 6, + 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(1136), 7, + ACTIONS(1172), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -38843,82 +41635,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35444] = 8, + [38820] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 1, - anon_sym_DOT, - ACTIONS(1182), 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(1186), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - STATE(572), 1, + 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, + STATE(443), 1, sym_argument_list, - STATE(1168), 1, + STATE(484), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(915), 7, + ACTIONS(1102), 2, anon_sym_EQ, - anon_sym_PIPE, anon_sym_COLON, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(913), 17, + ACTIONS(1100), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_LT_DASH, anon_sym_COLON_EQ, + ACTIONS(1156), 3, 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(1160), 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, - [35491] = 13, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1128), 1, + ACTIONS(1152), 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(1130), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, - ACTIONS(1144), 1, + ACTIONS(1180), 1, anon_sym_PIPE_PIPE, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_LF, - STATE(536), 1, + STATE(485), 1, + sym_comment, + STATE(501), 1, sym_argument_list, - STATE(1156), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1174), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1240), 4, + ACTIONS(1244), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1140), 6, + 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(1136), 7, + ACTIONS(1172), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -38926,64 +41738,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35548] = 13, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(1128), 1, + STATE(501), 1, + sym_special_argument_list, + ACTIONS(654), 26, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1134), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1142), 1, + 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, - ACTIONS(1144), 1, anon_sym_PIPE_PIPE, - ACTIONS(1242), 1, - anon_sym_LF, - STATE(536), 1, + [39008] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1186), 1, + anon_sym_LPAREN, + ACTIONS(1190), 1, + anon_sym_LBRACK, + STATE(487), 1, + sym_comment, + STATE(546), 1, sym_argument_list, - STATE(1156), 1, + STATE(1182), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(921), 7, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(919), 17, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, 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_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, - ACTIONS(1136), 7, - anon_sym_STAR, + 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, + anon_sym_DOT, + ACTIONS(1186), 1, + anon_sym_LPAREN, + ACTIONS(1190), 1, + anon_sym_LBRACK, + STATE(488), 1, + sym_comment, + STATE(546), 1, + sym_argument_list, + STATE(1182), 1, + sym_type_arguments, + ACTIONS(1200), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(917), 5, + anon_sym_EQ, + anon_sym_PIPE, + 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, - [35605] = 8, + ACTIONS(915), 12, + anon_sym_COMMA, + anon_sym_LT_DASH, + 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, + [39124] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1184), 1, anon_sym_DOT, - ACTIONS(1182), 1, - anon_sym_LPAREN, ACTIONS(1186), 1, + anon_sym_LPAREN, + ACTIONS(1190), 1, anon_sym_LBRACK, - STATE(572), 1, + STATE(489), 1, + sym_comment, + STATE(546), 1, sym_argument_list, - STATE(1168), 1, + STATE(1182), 1, sym_type_arguments, - ACTIONS(911), 7, + ACTIONS(917), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -38991,7 +41899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(909), 17, + ACTIONS(915), 17, anon_sym_COMMA, anon_sym_STAR, anon_sym_LT_DASH, @@ -39009,103 +41917,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35652] = 14, + [39180] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1184), 1, anon_sym_DOT, - ACTIONS(1182), 1, - anon_sym_LPAREN, ACTIONS(1186), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1190), 1, + anon_sym_LBRACK, + ACTIONS(1194), 1, anon_sym_PIPE, - STATE(572), 1, + STATE(490), 1, + sym_comment, + STATE(546), 1, sym_argument_list, - STATE(1168), 1, + STATE(1182), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(917), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1196), 2, + ACTIONS(1200), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1200), 2, + ACTIONS(1204), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1194), 3, + ACTIONS(1198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1198), 4, + ACTIONS(1202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(913), 5, + ACTIONS(915), 5, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_COLON_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1188), 5, + ACTIONS(1192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35711] = 15, + [39248] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 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(1182), 1, + ACTIONS(1166), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, - anon_sym_PIPE, - ACTIONS(1202), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, - STATE(572), 1, + 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(1168), 1, + STATE(1160), 1, sym_type_arguments, - ACTIONS(915), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1196), 2, + 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, + anon_sym_DOT, + ACTIONS(1186), 1, + anon_sym_LPAREN, + ACTIONS(1190), 1, + anon_sym_LBRACK, + ACTIONS(1194), 1, + anon_sym_PIPE, + STATE(492), 1, + sym_comment, + STATE(546), 1, + sym_argument_list, + STATE(1182), 1, + sym_type_arguments, ACTIONS(1200), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1194), 3, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1198), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(913), 4, + 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, 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, - ACTIONS(1188), 5, + 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, 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, - [35772] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(965), 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, + [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, - ACTIONS(967), 27, + STATE(494), 1, + sym_comment, + ACTIONS(1061), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39133,60 +42145,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35808] = 18, + [39468] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 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(1104), 1, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1246), 1, + ACTIONS(1252), 1, anon_sym_RPAREN, - ACTIONS(1248), 1, + ACTIONS(1254), 1, anon_sym_COMMA, - ACTIONS(1250), 1, + ACTIONS(1256), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1047), 1, + STATE(495), 1, + sym_comment, + STATE(1070), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35874] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1009), 1, + [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, - ACTIONS(1011), 27, + STATE(496), 1, + sym_comment, + ACTIONS(957), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39214,12 +42238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35910] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1033), 1, + [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, - ACTIONS(1035), 27, + STATE(497), 1, + sym_comment, + ACTIONS(1073), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39247,62 +42277,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35946] = 20, + [39633] = 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(498), 1, sym_comment, - 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, + ACTIONS(1021), 27, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, 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_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, + [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, - ACTIONS(1063), 27, + STATE(499), 1, + sym_comment, + ACTIONS(1013), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39330,12 +42355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36052] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1057), 1, + [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, - ACTIONS(1059), 27, + STATE(500), 1, + sym_comment, + ACTIONS(812), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39363,12 +42394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36088] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1053), 1, + [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, - ACTIONS(1055), 27, + STATE(501), 1, + sym_comment, + ACTIONS(1045), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39396,12 +42433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36124] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(722), 1, + [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, - ACTIONS(724), 27, + STATE(502), 1, + sym_comment, + ACTIONS(792), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39429,12 +42472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36160] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(985), 1, + [39858] = 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, anon_sym_LF, - ACTIONS(987), 27, + STATE(503), 1, + sym_comment, + ACTIONS(1033), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39462,96 +42511,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36196] = 9, + [39903] = 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(504), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(631), 1, + ACTIONS(1029), 27, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + anon_sym_COMMA, anon_sym_LBRACK, - STATE(434), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 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, - ACTIONS(627), 17, - anon_sym_RPAREN, + 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, + sym_comment, + ACTIONS(1057), 27, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, 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, - [36244] = 15, + [39993] = 6, 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1067), 1, anon_sym_LF, - ACTIONS(1047), 27, + STATE(506), 1, + sym_comment, + ACTIONS(1069), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39579,60 +42628,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36340] = 18, + [40038] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(933), 1, - anon_sym_COLON_EQ, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1184), 1, + 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(1274), 1, + anon_sym_RPAREN, + ACTIONS(1276), 1, anon_sym_COMMA, - ACTIONS(1282), 1, + 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_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, + [40113] = 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(1286), 1, - anon_sym_LBRACE, - ACTIONS(1288), 1, + 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(1298), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1278), 1, + anon_sym_RPAREN, + ACTIONS(1280), 1, + anon_sym_COMMA, + STATE(443), 1, sym_argument_list, - STATE(863), 1, - aux_sym_expression_list_repeat1, - STATE(1129), 1, + STATE(508), 1, + sym_comment, + STATE(1034), 1, + aux_sym_argument_list_repeat1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1258), 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, + [40188] = 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, - ACTIONS(1043), 27, + STATE(509), 1, + sym_comment, + ACTIONS(1009), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39660,12 +42775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36442] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(802), 1, + [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, - ACTIONS(804), 27, + STATE(510), 1, + sym_comment, + ACTIONS(1001), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39693,12 +42814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36478] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1025), 1, + [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, - ACTIONS(1027), 27, + STATE(511), 1, + sym_comment, + ACTIONS(965), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39726,112 +42853,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36514] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(953), 1, - anon_sym_LF, - ACTIONS(955), 27, - anon_sym_SEMI, + [40323] = 12, + 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, anon_sym_DOT, + ACTIONS(871), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1077), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, + 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_case, - anon_sym_default, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 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_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, - [36550] = 18, + [40380] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1250), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, - anon_sym_RPAREN, - ACTIONS(1304), 1, + ACTIONS(1188), 1, anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1240), 1, + anon_sym_PIPE_PIPE, + STATE(443), 1, sym_argument_list, - STATE(1105), 1, - aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(513), 1, + sym_comment, + STATE(872), 1, + aux_sym_expression_list_repeat1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(939), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36616] = 10, + [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, sym_comment, - ACTIONS(306), 1, + ACTIONS(1005), 27, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + 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, + [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(618), 1, + ACTIONS(624), 1, anon_sym_COMMA, - ACTIONS(858), 1, + ACTIONS(856), 1, anon_sym_DOT, - ACTIONS(1069), 1, + ACTIONS(1077), 1, anon_sym_LBRACK, - STATE(434), 1, + STATE(441), 1, sym_literal_value, - STATE(817), 1, + STATE(515), 1, + sym_comment, + STATE(828), 1, sym_type_arguments, - ACTIONS(873), 2, + ACTIONS(871), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(629), 5, + ACTIONS(654), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 15, + ACTIONS(652), 15, anon_sym_STAR, anon_sym_COLON, anon_sym_PLUS, @@ -39847,12 +43036,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36666] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(1049), 1, + 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, anon_sym_LF, - ACTIONS(1051), 27, + STATE(517), 1, + sym_comment, + ACTIONS(961), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39880,93 +43129,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36702] = 18, + [40677] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 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(1104), 1, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1250), 1, + ACTIONS(1256), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1306), 1, + ACTIONS(1286), 1, anon_sym_RPAREN, - ACTIONS(1308), 1, + ACTIONS(1288), 1, anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1110), 1, + STATE(518), 1, + sym_comment, + STATE(1059), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36768] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(1017), 1, - anon_sym_LF, - ACTIONS(1019), 27, - anon_sym_SEMI, + 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, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, 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, - [36804] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1065), 1, + [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, - ACTIONS(1067), 27, + STATE(520), 1, + sym_comment, + ACTIONS(1041), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39994,12 +43263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36840] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1029), 1, + [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, - ACTIONS(1031), 27, + STATE(521), 1, + sym_comment, + ACTIONS(985), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40027,60 +43302,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36876] = 18, + [40891] = 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, - ACTIONS(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 1, + 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1250), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, + ACTIONS(1188), 1, + anon_sym_COMMA, + ACTIONS(1298), 1, + anon_sym_DOT, + ACTIONS(1302), 1, + anon_sym_LBRACE, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1314), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1316), 1, anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_RPAREN, - ACTIONS(1312), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1056), 1, - aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(523), 1, + sym_comment, + STATE(872), 1, + aux_sym_expression_list_repeat1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1306), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1300), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36942] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1001), 1, + [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, - ACTIONS(1003), 27, + STATE(524), 1, + sym_comment, + ACTIONS(780), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40108,126 +43446,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36978] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_LF, - ACTIONS(999), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - 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, - [37014] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(993), 1, - anon_sym_LF, - ACTIONS(995), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - 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, - [37050] = 18, + [41080] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 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(1104), 1, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1250), 1, + ACTIONS(1256), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1314), 1, + ACTIONS(1318), 1, anon_sym_RPAREN, - ACTIONS(1316), 1, + ACTIONS(1320), 1, anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1045), 1, + STATE(525), 1, + sym_comment, + STATE(1119), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [37116] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(989), 1, + [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, - ACTIONS(991), 27, + STATE(526), 1, + sym_comment, + ACTIONS(989), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40255,59 +43539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37152] = 17, + [41200] = 6, 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(1184), 1, - anon_sym_COMMA, - ACTIONS(1230), 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(933), 2, - anon_sym_SEMI, - anon_sym_COLON, - 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, - [37216] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(973), 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, - ACTIONS(975), 27, + STATE(527), 1, + sym_comment, + ACTIONS(993), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40335,80 +43578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37252] = 5, + [41245] = 6, ACTIONS(3), 1, - sym_comment, - 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(971), 1, anon_sym_LF, - ACTIONS(963), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - 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, - [37328] = 3, - ACTIONS(286), 1, + STATE(528), 1, sym_comment, - ACTIONS(981), 1, - anon_sym_LF, - ACTIONS(983), 27, + ACTIONS(973), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40436,12 +43617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37364] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(969), 1, + [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, - ACTIONS(971), 27, + STATE(529), 1, + sym_comment, + ACTIONS(997), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40469,12 +43656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37400] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(957), 1, + [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, - ACTIONS(959), 27, + STATE(530), 1, + sym_comment, + ACTIONS(981), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40502,12 +43695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37436] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1037), 1, + [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, - ACTIONS(1039), 27, + STATE(531), 1, + sym_comment, + ACTIONS(969), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40535,12 +43734,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37472] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1021), 1, + [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, - ACTIONS(1023), 27, + STATE(532), 1, + sym_comment, + ACTIONS(1017), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40568,12 +43773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37508] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(949), 1, + [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, - ACTIONS(951), 27, + STATE(533), 1, + sym_comment, + ACTIONS(1037), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40601,12 +43812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37544] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(977), 1, + [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, - ACTIONS(979), 27, + STATE(534), 1, + sym_comment, + ACTIONS(654), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40634,60 +43851,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37580] = 18, + [41560] = 23, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 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, anon_sym_DOT, - ACTIONS(1104), 1, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1326), 1, anon_sym_LBRACK, - ACTIONS(1250), 1, + ACTIONS(1328), 1, anon_sym_DOT_DOT_DOT, - 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, + STATE(535), 1, sym_comment, - ACTIONS(1005), 1, + 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, - ACTIONS(1007), 27, + STATE(536), 1, + sym_comment, + ACTIONS(977), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40715,12 +43946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37682] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(750), 1, + [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, - ACTIONS(752), 27, + STATE(537), 1, + sym_comment, + ACTIONS(1065), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40748,12 +43985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37718] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(690), 1, + [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, - ACTIONS(692), 27, + STATE(538), 1, + sym_comment, + ACTIONS(1053), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40781,12 +44024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37754] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(627), 1, + [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, - ACTIONS(629), 27, + STATE(539), 1, + sym_comment, + ACTIONS(820), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40814,57 +44063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [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, + [41819] = 6, 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(692), 7, + ACTIONS(957), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40872,7 +44080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 20, + ACTIONS(955), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -40893,10 +44101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37890] = 3, + [41863] = 6, 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(1023), 7, + ACTIONS(1037), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40904,7 +44118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 20, + ACTIONS(1035), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -40925,10 +44139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37925] = 3, + [41907] = 6, 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(1039), 7, + ACTIONS(961), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40936,7 +44156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 20, + ACTIONS(959), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -40957,153 +44177,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37960] = 3, + [41951] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 7, - anon_sym_EQ, + 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, - anon_sym_COLON, + 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, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 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(1306), 3, 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(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, + 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, - [37995] = 3, - ACTIONS(3), 1, + ACTIONS(1332), 1, + anon_sym_DOT, + STATE(443), 1, + sym_argument_list, + STATE(544), 1, sym_comment, - ACTIONS(971), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + 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(969), 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(1156), 3, 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(1160), 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, - [38030] = 3, + 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, - sym_comment, - ACTIONS(983), 7, - anon_sym_EQ, + 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, - anon_sym_COLON, + 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(981), 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(1262), 3, 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(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, - [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, + ACTIONS(1258), 5, 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, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [42159] = 6, 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(963), 7, + ACTIONS(1045), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41111,7 +44346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 20, + ACTIONS(1043), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41132,10 +44367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38165] = 3, + [42203] = 6, 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(975), 7, + ACTIONS(973), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41143,7 +44384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 20, + ACTIONS(971), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41164,10 +44405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38200] = 3, + [42247] = 6, 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(991), 7, + ACTIONS(993), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41175,7 +44422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 20, + ACTIONS(991), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41196,10 +44443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38235] = 3, + [42291] = 6, 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(995), 7, + ACTIONS(969), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41207,7 +44460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 20, + ACTIONS(967), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41228,10 +44481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38270] = 3, + [42335] = 6, 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(999), 7, + ACTIONS(1017), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41239,7 +44498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 20, + ACTIONS(1015), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41260,10 +44519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38305] = 3, + [42379] = 6, 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(629), 7, + ACTIONS(1041), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41271,7 +44536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 20, + ACTIONS(1039), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41292,47 +44557,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38340] = 8, + [42423] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_DOT, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(1069), 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, - 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, + ACTIONS(1296), 1, 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, - [38385] = 3, + 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, 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(724), 7, + ACTIONS(820), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41340,7 +44627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 20, + ACTIONS(818), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41361,56 +44648,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38420] = 17, + [42541] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(933), 1, - anon_sym_LBRACE, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1336), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1100), 1, - aux_sym_expression_list_repeat1, - STATE(1129), 1, + STATE(554), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(915), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38483] = 3, + [42607] = 6, 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(1031), 7, + ACTIONS(1049), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41418,7 +44714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 20, + ACTIONS(1047), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41439,42 +44735,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38518] = 3, + [42651] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1019), 7, - anon_sym_EQ, + 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, - anon_sym_COLON, + ACTIONS(1182), 1, + anon_sym_AMP_AMP, + ACTIONS(1240), 1, + anon_sym_PIPE_PIPE, + STATE(443), 1, + sym_argument_list, + STATE(556), 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(1017), 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(1156), 3, 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(1342), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(1160), 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, - [38553] = 3, + ACTIONS(1152), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [42719] = 6, 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(1051), 7, + ACTIONS(1053), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41482,7 +44802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 20, + ACTIONS(1051), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41503,10 +44823,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38588] = 3, + [42763] = 6, 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(967), 7, + ACTIONS(812), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41514,7 +44840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 20, + ACTIONS(810), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41535,24 +44861,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38623] = 3, + [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, - ACTIONS(955), 7, - anon_sym_EQ, + STATE(828), 1, + sym_type_arguments, + ACTIONS(654), 5, anon_sym_PIPE, - anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 20, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(652), 17, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_STAR, - anon_sym_LT_DASH, + anon_sym_LBRACE, anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -41567,10 +44904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38658] = 3, + [42861] = 6, 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(1027), 7, + ACTIONS(654), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41578,7 +44921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 20, + ACTIONS(652), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41599,49 +44942,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38693] = 10, + [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, - ACTIONS(1104), 1, + 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - STATE(429), 1, + ACTIONS(1304), 1, + anon_sym_PIPE, + ACTIONS(1314), 1, + anon_sym_AMP_AMP, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(562), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 3, - anon_sym_PIPE, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1284), 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_LBRACE, - anon_sym_COLON_EQ, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [38742] = 3, + ACTIONS(1300), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [43045] = 6, 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(1043), 7, + ACTIONS(1013), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41649,7 +45061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 20, + ACTIONS(1011), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41670,181 +45082,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38777] = 12, + [43089] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(564), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1292), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1290), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1284), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 9, + ACTIONS(915), 9, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_COLON_EQ, + 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, - [38830] = 13, + [43151] = 6, 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(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1009), 7, + anon_sym_EQ, anon_sym_PIPE, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1292), 2, + anon_sym_COLON, 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(913), 5, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_COLON_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1284), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [38885] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, + ACTIONS(1007), 20, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1106), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_AMP_AMP, - 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_STAR, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - 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, - ACTIONS(1284), 5, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38942] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1250), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, - anon_sym_PIPE, - ACTIONS(1264), 1, - anon_sym_AMP_AMP, - ACTIONS(1266), 1, - anon_sym_PIPE_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(1338), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [39003] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [43195] = 6, 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(1047), 7, + ACTIONS(1065), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41852,7 +45184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 20, + ACTIONS(1063), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41873,10 +45205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39038] = 3, + [43239] = 6, 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(1003), 7, + ACTIONS(780), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41884,7 +45222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 20, + ACTIONS(778), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41905,10 +45243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39073] = 3, + [43283] = 6, 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(987), 7, + ACTIONS(965), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41916,7 +45260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 20, + ACTIONS(963), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41937,10 +45281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39108] = 3, + [43327] = 6, 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(1007), 7, + ACTIONS(1069), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41948,7 +45298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 20, + ACTIONS(1067), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41969,120 +45319,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39143] = 3, + [43371] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(752), 7, - anon_sym_EQ, + 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, - anon_sym_COLON, + STATE(443), 1, + sym_argument_list, + STATE(570), 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(750), 20, - anon_sym_DOT, - anon_sym_LPAREN, + 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(915), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, + anon_sym_LBRACE, anon_sym_COLON_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1300), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [43435] = 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, + anon_sym_LPAREN, + ACTIONS(1112), 1, + anon_sym_LBRACK, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1304), 1, + anon_sym_PIPE, + STATE(443), 1, + sym_argument_list, + STATE(571), 1, + sym_comment, + STATE(1177), 1, + sym_type_arguments, + ACTIONS(917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1308), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1306), 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, + 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, - [39178] = 3, + [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, - ACTIONS(951), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + 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(949), 20, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1300), 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(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, - [39213] = 17, + [43629] = 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, + 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, - ACTIONS(933), 1, - anon_sym_SEMI, - ACTIONS(1104), 1, + 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, + anon_sym_DOT, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1118), 1, + ACTIONS(1256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1184), 1, - anon_sym_COMMA, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1340), 1, - anon_sym_DOT, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(863), 1, - aux_sym_expression_list_repeat1, - STATE(1129), 1, + STATE(575), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1365), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39276] = 3, + [43771] = 6, 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(979), 7, + ACTIONS(1021), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42090,7 +45632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 20, + ACTIONS(1019), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42111,10 +45653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39311] = 3, + [43815] = 6, 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(1067), 7, + ACTIONS(977), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42122,7 +45670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 20, + ACTIONS(975), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42143,10 +45691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39346] = 3, + [43859] = 6, 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(1055), 7, + ACTIONS(1057), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42154,7 +45708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 20, + ACTIONS(1055), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42175,58 +45729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39381] = 19, + [43903] = 6, 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(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, + ACTIONS(1073), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42234,7 +45746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 20, + ACTIONS(1071), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42255,79 +45767,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [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, + [43947] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 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(1104), 1, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(580), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 3, + ACTIONS(917), 3, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1252), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 12, + ACTIONS(915), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -42340,44 +45812,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39595] = 18, + [44005] = 22, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(868), 1, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(863), 1, + anon_sym_COMMA, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1296), 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, + 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(1083), 2, + STATE(828), 1, + sym_type_arguments, + STATE(1079), 2, sym_parenthesized_type, sym__simple_type, - STATE(1091), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -42387,10 +45866,16 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [39660] = 3, + [44081] = 6, 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(804), 7, + ACTIONS(997), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42398,7 +45883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 20, + ACTIONS(995), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42419,136 +45904,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39695] = 12, + [44125] = 6, 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(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1254), 1, + ACTIONS(1001), 7, + anon_sym_EQ, 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_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1256), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(999), 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(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, + [44169] = 6, 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(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1254), 1, + ACTIONS(985), 7, + anon_sym_EQ, anon_sym_PIPE, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1258), 2, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(983), 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(1260), 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(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, + [44213] = 6, 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(1102), 1, - anon_sym_DOT, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1254), 1, + ACTIONS(1033), 7, + anon_sym_EQ, 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_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1031), 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(913), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - ACTIONS(1260), 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(1252), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [44257] = 6, + 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, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1027), 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, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39860] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [44301] = 6, 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(1035), 7, + ACTIONS(792), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42556,7 +46073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 20, + ACTIONS(790), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42577,54 +46094,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39895] = 15, + [44345] = 6, 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(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(989), 7, + anon_sym_EQ, 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_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(987), 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(1361), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(1122), 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(1112), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [44389] = 6, + 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, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(979), 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, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39954] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [44433] = 6, 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(1063), 7, + ACTIONS(1061), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42632,7 +46187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 20, + ACTIONS(1059), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42653,10 +46208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39989] = 3, + [44477] = 6, 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(1059), 7, + ACTIONS(1005), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42664,7 +46225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 20, + ACTIONS(1003), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42685,86 +46246,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40024] = 16, + [44521] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + 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, + anon_sym_LPAREN, + ACTIONS(1112), 1, + anon_sym_LBRACK, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1363), 1, - anon_sym_RPAREN, - ACTIONS(1365), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1369), 1, + anon_sym_RBRACK, + ACTIONS(1371), 1, + anon_sym_COLON, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(593), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40084] = 17, + [44657] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, + ACTIONS(1296), 1, + anon_sym_STAR, ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, sym_identifier, - ACTIONS(1330), 1, + ACTIONS(1340), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1367), 1, + ACTIONS(1373), 1, anon_sym_RPAREN, - STATE(789), 1, + STATE(594), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1028), 2, sym_parenthesized_type, sym__simple_type, STATE(1123), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -42774,42 +46396,98 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [40146] = 17, + [44728] = 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, + 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, - ACTIONS(29), 1, - anon_sym_struct, + 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, + anon_sym_struct, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, + ACTIONS(1296), 1, + anon_sym_STAR, ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, sym_identifier, - ACTIONS(1330), 1, + ACTIONS(1340), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1369), 1, + ACTIONS(1379), 1, anon_sym_RPAREN, - STATE(789), 1, + STATE(596), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1028), 2, sym_parenthesized_type, sym__simple_type, STATE(1123), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -42819,2293 +46497,2316 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [40208] = 16, + [44868] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1371), 1, + ACTIONS(1381), 1, anon_sym_RBRACK, - ACTIONS(1373), 1, + ACTIONS(1383), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(597), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40268] = 15, + [44937] = 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, + 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, - ACTIONS(1104), 1, + 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1094), 2, + ACTIONS(1387), 1, anon_sym_RPAREN, + ACTIONS(1389), 1, anon_sym_COMMA, - ACTIONS(1258), 2, + STATE(443), 1, + sym_argument_list, + STATE(599), 1, + sym_comment, + STATE(1177), 1, + sym_type_arguments, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40326] = 16, + [45077] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1375), 1, + ACTIONS(1391), 1, anon_sym_RBRACK, - ACTIONS(1377), 1, + ACTIONS(1393), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(600), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40386] = 16, + [45146] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(877), 1, - sym_block, - STATE(1129), 1, + STATE(601), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1100), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40446] = 16, + [45213] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1395), 1, anon_sym_RBRACK, - ACTIONS(1381), 1, + ACTIONS(1397), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(602), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40506] = 17, + [45282] = 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(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_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1314), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1316), 1, anon_sym_PIPE_PIPE, - ACTIONS(1385), 1, - anon_sym_RPAREN, - ACTIONS(1387), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(603), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1100), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1306), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1300), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40628] = 16, + [45349] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1314), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1316), 1, anon_sym_PIPE_PIPE, - ACTIONS(1389), 1, - anon_sym_RBRACK, - ACTIONS(1391), 1, - anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(604), 1, + sym_comment, + STATE(876), 1, + sym_block, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1306), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1300), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40688] = 16, + [45418] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1393), 1, + ACTIONS(1399), 1, anon_sym_RBRACK, - ACTIONS(1395), 1, + ACTIONS(1401), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(605), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40748] = 16, + [45487] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1397), 1, + ACTIONS(1403), 1, anon_sym_RBRACK, - ACTIONS(1399), 1, + ACTIONS(1405), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(606), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40808] = 16, + [45556] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1401), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - ACTIONS(1403), 1, + ACTIONS(1409), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(607), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40868] = 16, + [45625] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1405), 1, - anon_sym_RBRACK, - ACTIONS(1407), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1411), 1, + anon_sym_RPAREN, + ACTIONS(1413), 1, + anon_sym_COMMA, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(608), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40928] = 15, + [45694] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(1417), 1, + anon_sym_COMMA, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(609), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1242), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40986] = 16, + [45763] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1409), 1, + ACTIONS(1419), 1, anon_sym_RBRACK, - ACTIONS(1411), 1, + ACTIONS(1421), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(610), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41046] = 16, + [45832] = 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, + 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, - ACTIONS(1104), 1, + 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1413), 1, - anon_sym_RBRACK, - ACTIONS(1415), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1425), 1, + anon_sym_RPAREN, + ACTIONS(1427), 1, + anon_sym_COMMA, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(612), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41106] = 16, + [45972] = 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, + 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, - ACTIONS(1104), 1, + 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1417), 1, + ACTIONS(1431), 1, anon_sym_RBRACK, - ACTIONS(1419), 1, + ACTIONS(1433), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(614), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41166] = 16, + [46112] = 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, + 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, - ACTIONS(1104), 1, + 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1421), 1, + ACTIONS(1437), 1, anon_sym_RBRACK, - ACTIONS(1423), 1, + ACTIONS(1439), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(616), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41226] = 16, + [46252] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(1427), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(617), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1242), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41286] = 16, + [46319] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, + ACTIONS(1441), 1, anon_sym_RBRACK, - ACTIONS(1431), 1, + ACTIONS(1443), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(618), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41346] = 17, + [46388] = 19, 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_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1324), 1, - sym_identifier, - ACTIONS(1330), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1433), 1, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1260), 1, + anon_sym_PIPE, + ACTIONS(1270), 1, + anon_sym_AMP_AMP, + ACTIONS(1272), 1, + anon_sym_PIPE_PIPE, + 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, - [41408] = 16, - 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, - ACTIONS(1435), 1, - anon_sym_RBRACK, - ACTIONS(1437), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1447), 1, + anon_sym_COMMA, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(619), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41468] = 16, + [46457] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1439), 1, + ACTIONS(1449), 1, anon_sym_RBRACK, - ACTIONS(1441), 1, + ACTIONS(1451), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(620), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41528] = 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(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, + [46526] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1447), 1, - anon_sym_RBRACK, - ACTIONS(1449), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(1455), 1, + anon_sym_COMMA, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(621), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41712] = 15, + [46595] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1457), 1, + anon_sym_RBRACK, + ACTIONS(1459), 1, + anon_sym_COLON, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(622), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1094), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(1292), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41770] = 16, + [46664] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_RPAREN, - ACTIONS(1453), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1461), 1, + anon_sym_RBRACK, + ACTIONS(1463), 1, + anon_sym_COLON, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(623), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41830] = 16, + [46733] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1455), 1, + ACTIONS(1465), 1, anon_sym_RBRACK, - ACTIONS(1457), 1, + ACTIONS(1467), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(624), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41890] = 15, - 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(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, + [46802] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1459), 1, + ACTIONS(1469), 1, anon_sym_RBRACK, - ACTIONS(1461), 1, + ACTIONS(1471), 1, anon_sym_COLON, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(625), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42008] = 16, + [46871] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1463), 1, - anon_sym_RPAREN, - ACTIONS(1465), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1473), 1, + anon_sym_RBRACK, + ACTIONS(1475), 1, + anon_sym_COLON, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(626), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42068] = 16, + [46940] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1242), 1, + anon_sym_LBRACE, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1314), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1316), 1, anon_sym_PIPE_PIPE, - ACTIONS(1467), 1, - anon_sym_RPAREN, - ACTIONS(1469), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(627), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1306), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1300), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42128] = 15, + [47006] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1471), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1477), 1, + anon_sym_RBRACK, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(628), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [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, + [47072] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1477), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1479), 1, + anon_sym_COLON, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(629), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42301] = 15, + [47138] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1479), 1, - anon_sym_LBRACE, - STATE(429), 1, + ACTIONS(1481), 1, + anon_sym_RBRACK, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(630), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42358] = 15, + [47204] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1314), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1316), 1, anon_sym_PIPE_PIPE, - ACTIONS(1481), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1483), 1, + anon_sym_LBRACE, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(631), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1306), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1300), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42415] = 15, + [47270] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1483), 1, + ACTIONS(1485), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(632), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42472] = 15, + [47336] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1485), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1487), 1, + anon_sym_SEMI, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(633), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42529] = 15, + [47402] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1487), 1, + ACTIONS(1489), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(634), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42586] = 15, + [47468] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1489), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1491), 1, + anon_sym_RPAREN, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(635), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42643] = 15, + [47534] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1491), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1493), 1, + anon_sym_RPAREN, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(636), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42700] = 15, + [47600] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1493), 1, + ACTIONS(1495), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(637), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42757] = 17, - ACTIONS(3), 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, + [47666] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, - ACTIONS(1507), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1497), 1, + anon_sym_RPAREN, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(638), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42875] = 15, + [47732] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1509), 1, + ACTIONS(1499), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 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(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, - [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, + STATE(639), 1, 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, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43048] = 15, + [47798] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1511), 1, + ACTIONS(1501), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 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(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, - [43105] = 15, - ACTIONS(3), 1, + STATE(640), 1, 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, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43162] = 15, + [47864] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1515), 1, + ACTIONS(1503), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(641), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43219] = 15, + [47930] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1517), 1, + ACTIONS(1505), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(642), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43276] = 17, + [47996] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1134), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1509), 1, anon_sym_COMMA, - ACTIONS(1501), 1, + ACTIONS(1511), 1, + anon_sym_EQ, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - ACTIONS(1519), 1, - anon_sym_EQ, - STATE(769), 1, + STATE(643), 1, + sym_comment, + STATE(651), 1, aux_sym_const_spec_repeat1, - STATE(778), 1, + STATE(786), 1, sym_qualified_type, - STATE(865), 2, + STATE(847), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45115,501 +48816,769 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [43337] = 15, + [48066] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1521), 1, + ACTIONS(1519), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(644), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43394] = 15, + [48132] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1314), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1316), 1, anon_sym_PIPE_PIPE, - ACTIONS(1523), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1521), 1, + anon_sym_LBRACE, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(645), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1308), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1312), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1306), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1300), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43451] = 15, + [48198] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1525), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1523), 1, + anon_sym_RBRACK, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(646), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43508] = 15, + [48264] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1527), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1525), 1, + anon_sym_RBRACK, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(647), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43565] = 15, + [48330] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1529), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1527), 1, + anon_sym_RBRACK, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(648), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43622] = 15, + [48396] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1531), 1, + ACTIONS(1529), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(649), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43679] = 15, + [48462] = 19, 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, - ACTIONS(1104), 1, + 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, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1509), 1, + anon_sym_COMMA, + ACTIONS(1513), 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(1288), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, ACTIONS(1533), 1, - anon_sym_LBRACE, - STATE(429), 1, + anon_sym_RPAREN, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(652), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43736] = 15, + [48666] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1260), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1270), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1272), 1, anon_sym_PIPE_PIPE, ACTIONS(1535), 1, - anon_sym_RBRACK, - STATE(429), 1, + anon_sym_RPAREN, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(653), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1264), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1268), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1262), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1266), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1258), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43793] = 15, + [48732] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, ACTIONS(1537), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(654), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43850] = 15, + [48798] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, ACTIONS(1539), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(655), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43907] = 15, + [48864] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, ACTIONS(1541), 1, - anon_sym_RPAREN, - STATE(429), 1, + anon_sym_SEMI, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(656), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43964] = 16, + [48930] = 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(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, - ACTIONS(29), 1, + 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, anon_sym_struct, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(35), 1, + 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(33), 1, + anon_sym_struct, ACTIONS(37), 1, + anon_sym_interface, + ACTIONS(39), 1, + anon_sym_map, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1355), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - STATE(329), 1, + ACTIONS(1549), 1, + anon_sym_LBRACE, + STATE(402), 1, sym_block, - STATE(789), 1, + STATE(659), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1085), 2, + STATE(1081), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45619,79 +49588,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44022] = 14, + [49131] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 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(1106), 1, + ACTIONS(1112), 1, anon_sym_LBRACK, - ACTIONS(1118), 1, + ACTIONS(1154), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1182), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1240), 1, anon_sym_PIPE_PIPE, - ACTIONS(1543), 1, + ACTIONS(1551), 1, anon_sym_DOT, - STATE(429), 1, + STATE(443), 1, sym_argument_list, - STATE(1129), 1, + STATE(660), 1, + sym_comment, + STATE(1177), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1158), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1156), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1160), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1152), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [44076] = 16, + [49194] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1355), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - ACTIONS(1545), 1, + ACTIONS(1553), 1, anon_sym_LBRACE, - STATE(588), 1, + STATE(369), 1, sym_block, - STATE(789), 1, + STATE(661), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1070), 2, + STATE(1102), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45701,40 +49682,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44134] = 17, + [49261] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_COMMA, - STATE(774), 1, - aux_sym_parameter_declaration_repeat1, - STATE(789), 1, + ACTIONS(1359), 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, sym_qualified_type, - STATE(1015), 1, + STATE(1041), 2, + sym_parameter_list, sym__simple_type, - STATE(1113), 1, - sym_parenthesized_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45744,39 +49730,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44194] = 16, + [49328] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(35), 1, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1344), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - ACTIONS(1549), 1, - anon_sym_LBRACE, - STATE(496), 1, - sym_block, - STATE(789), 1, + 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, sym_qualified_type, - STATE(1027), 2, - sym_parameter_list, + STATE(1158), 1, + sym_parameter_declaration, + STATE(1028), 2, + sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45786,39 +49778,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44252] = 16, + [49395] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - sym_identifier, - ACTIONS(1553), 1, - anon_sym_RBRACK, - STATE(789), 1, + ACTIONS(1359), 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, sym_qualified_type, - STATE(1170), 1, - sym_parameter_declaration, - STATE(1083), 2, - sym_parenthesized_type, + STATE(1016), 2, + sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45828,40 +49826,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44310] = 17, + [49462] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1134), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - ACTIONS(1555), 1, - anon_sym_COMMA, - STATE(773), 1, - aux_sym_field_declaration_repeat1, - STATE(778), 1, + 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, sym_qualified_type, - STATE(869), 1, + STATE(917), 2, sym_parenthesized_type, - STATE(870), 1, sym__simple_type, - STATE(812), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45871,39 +49874,46 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44370] = 16, + [49529] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(868), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - sym_identifier, - ACTIONS(1557), 1, - anon_sym_RBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 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, sym_qualified_type, - STATE(1170), 1, - sym_parameter_declaration, - STATE(1083), 2, - sym_parenthesized_type, + STATE(1010), 1, sym__simple_type, - STATE(816), 9, + STATE(1065), 1, + sym_parenthesized_type, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45913,39 +49923,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44428] = 16, + [49598] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 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(31), 1, + ACTIONS(35), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(1344), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1355), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - ACTIONS(1559), 1, + ACTIONS(1569), 1, sym_identifier, - STATE(329), 1, + STATE(328), 1, sym_block, - STATE(789), 1, + STATE(667), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1085), 2, + STATE(1030), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45955,39 +49971,46 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44486] = 16, + [49665] = 20, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1134), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1503), 1, + ACTIONS(1513), 1, + anon_sym_LBRACK, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - ACTIONS(1561), 1, - anon_sym_EQ, - ACTIONS(1563), 1, - anon_sym_LBRACK, - STATE(736), 1, - sym_type_parameter_list, - STATE(778), 1, + ACTIONS(1571), 1, + anon_sym_COMMA, + STATE(668), 1, + sym_comment, + STATE(773), 1, + aux_sym_field_declaration_repeat1, + STATE(786), 1, sym_qualified_type, - STATE(905), 2, + STATE(867), 1, sym_parenthesized_type, + STATE(869), 1, sym__simple_type, - STATE(812), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45997,39 +50020,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44544] = 16, + [49734] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(33), 1, - anon_sym_interface, + anon_sym_struct, ACTIONS(35), 1, - anon_sym_map, + anon_sym_LBRACE, ACTIONS(37), 1, + anon_sym_interface, + ACTIONS(39), 1, + anon_sym_map, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1352), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1355), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - ACTIONS(1565), 1, - anon_sym_LBRACE, - STATE(353), 1, + STATE(328), 1, sym_block, - STATE(789), 1, + STATE(669), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1088), 2, + STATE(1030), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46039,39 +50068,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44602] = 16, + [49801] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(35), 1, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1344), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - ACTIONS(1567), 1, - anon_sym_LBRACE, - STATE(398), 1, - sym_block, - STATE(789), 1, + 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, sym_qualified_type, - STATE(1104), 2, - sym_parameter_list, + STATE(1158), 1, + sym_parameter_declaration, + STATE(1028), 2, + sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46081,37 +50116,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44660] = 15, + [49868] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1569), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(671), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46121,37 +50162,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44715] = 15, + [49932] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(868), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - sym_identifier, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1577), 1, + anon_sym_type, + STATE(672), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1020), 1, - sym_parameter_declaration, - STATE(1083), 2, + STATE(1192), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46161,37 +50208,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44770] = 15, + [49996] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, - anon_sym_type, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1579), 1, + anon_sym_RBRACK, + STATE(673), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46201,37 +50254,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44825] = 15, + [50060] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(868), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - sym_identifier, - STATE(789), 1, - sym_qualified_type, - STATE(1170), 1, - sym_parameter_declaration, - STATE(1083), 2, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1581), 1, + anon_sym_type, + STATE(674), 1, + sym_comment, + STATE(793), 1, + sym_qualified_type, + STATE(1192), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46241,37 +50300,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44880] = 15, + [50124] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1573), 1, - anon_sym_RBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1583), 1, + anon_sym_type, + STATE(675), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1270), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46281,37 +50346,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44935] = 15, + [50188] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, - sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, - anon_sym_type, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1557), 1, + sym_identifier, + STATE(676), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1077), 1, + sym_parameter_declaration, + STATE(1028), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46321,37 +50392,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44990] = 15, + [50252] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, - sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1577), 1, - anon_sym_RBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1557), 1, + sym_identifier, + STATE(677), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1158), 1, + sym_parameter_declaration, + STATE(1028), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46361,37 +50438,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45045] = 15, + [50316] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1579), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1585), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(678), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46401,37 +50484,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45100] = 15, + [50380] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(679), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46441,37 +50530,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45155] = 15, + [50444] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1583), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, anon_sym_type, - STATE(789), 1, + STATE(680), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1253), 2, + STATE(1192), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46481,37 +50576,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45210] = 15, + [50508] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1585), 1, - anon_sym_type, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1591), 1, + anon_sym_RBRACK, + STATE(681), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46521,37 +50622,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45265] = 15, + [50572] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1593), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(682), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46561,35 +50668,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45320] = 14, + [50636] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1134), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(683), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(886), 2, + STATE(909), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46599,35 +50712,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45372] = 14, + [50697] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(684), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(844), 2, + STATE(1121), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46637,35 +50756,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45424] = 14, + [50758] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1296), 1, anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(685), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(291), 2, + STATE(817), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46675,35 +50800,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45476] = 14, + [50819] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(686), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1163), 2, + STATE(1199), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46713,35 +50844,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45528] = 14, + [50880] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(687), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(818), 2, + STATE(824), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46751,35 +50888,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45580] = 14, + [50941] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(688), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1232), 2, + STATE(1012), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46789,35 +50932,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45632] = 14, + [51002] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(278), 1, + anon_sym_struct, + ACTIONS(282), 1, + anon_sym_interface, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1601), 1, + anon_sym_STAR, + ACTIONS(1603), 1, + anon_sym_LT_DASH, + STATE(238), 1, sym_qualified_type, - STATE(1187), 2, + STATE(689), 1, + sym_comment, + STATE(283), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46827,35 +50976,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45684] = 14, + [51063] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(690), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(819), 2, + STATE(1231), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46865,35 +51020,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45736] = 14, + [51124] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, + anon_sym_struct, ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(856), 1, + anon_sym_interface, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(1349), 1, + 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(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(691), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(818), 2, + STATE(844), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46903,35 +51064,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45788] = 14, + [51185] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1597), 1, + ACTIONS(1605), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(692), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(284), 2, + STATE(840), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46941,35 +51108,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45840] = 14, + [51246] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(693), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1063), 2, + STATE(1080), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46979,35 +51152,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45892] = 14, + [51307] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(35), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1355), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1599), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(694), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(838), 2, + STATE(824), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47017,35 +51196,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45944] = 14, + [51368] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1597), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(695), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(266), 2, + STATE(1122), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47055,35 +51240,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [45996] = 14, + [51429] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(696), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(258), 2, + STATE(1270), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47093,35 +51284,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46048] = 14, + [51490] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(697), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1235), 2, + STATE(818), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47131,35 +51328,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46100] = 14, + [51551] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(698), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1103), 2, + STATE(1252), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47169,35 +51372,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46152] = 14, + [51612] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1359), 1, + anon_sym_STAR, + ACTIONS(1363), 1, + anon_sym_LT_DASH, + STATE(699), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1253), 2, + STATE(844), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47207,35 +51416,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46204] = 14, + [51673] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(1589), 1, + ACTIONS(41), 1, + anon_sym_chan, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1595), 1, + ACTIONS(1605), 1, anon_sym_LT_DASH, - ACTIONS(1601), 1, - anon_sym_chan, - STATE(241), 1, + STATE(700), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(282), 2, + STATE(817), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47245,35 +51460,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46256] = 14, + [51734] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 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(268), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(274), 1, - anon_sym_struct, ACTIONS(278), 1, + anon_sym_struct, + ACTIONS(282), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_STAR, - ACTIONS(1595), 1, + ACTIONS(1607), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(238), 1, sym_qualified_type, - STATE(274), 2, + STATE(701), 1, + sym_comment, + STATE(247), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47283,35 +51504,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46308] = 14, + [51795] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(702), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(285), 2, + STATE(1103), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47321,35 +51548,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46360] = 14, + [51856] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1134), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(703), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(799), 2, + STATE(910), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47359,35 +51592,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46412] = 14, + [51917] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 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(278), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1589), 1, - anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(704), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(281), 2, + STATE(1251), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47397,35 +51636,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46464] = 14, + [51978] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(705), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1089), 2, + STATE(1046), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47435,35 +51680,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46516] = 14, + [52039] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1134), 1, + anon_sym_struct, + ACTIONS(1136), 1, + anon_sym_interface, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1517), 1, + anon_sym_LT_DASH, + STATE(706), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(1061), 2, + STATE(808), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47473,35 +51724,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46568] = 14, + [52100] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1134), 1, + anon_sym_struct, + ACTIONS(1136), 1, + anon_sym_interface, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1517), 1, + anon_sym_LT_DASH, + STATE(707), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(1224), 2, + STATE(805), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47511,35 +51768,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46620] = 14, + [52161] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1134), 1, + anon_sym_struct, + ACTIONS(1136), 1, + anon_sym_interface, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1517), 1, + anon_sym_LT_DASH, + STATE(708), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(1032), 2, + STATE(803), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47549,35 +51812,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46672] = 14, + [52222] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 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(1166), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(709), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(801), 2, + STATE(1187), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47587,35 +51856,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46724] = 14, + [52283] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, - anon_sym_LBRACK, - ACTIONS(1603), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1294), 1, + anon_sym_LBRACK, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(710), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(841), 2, + STATE(1017), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47625,35 +51900,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46776] = 14, + [52344] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1134), 1, + anon_sym_struct, + ACTIONS(1136), 1, + anon_sym_interface, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1609), 1, + anon_sym_LT_DASH, + STATE(711), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(839), 2, + STATE(798), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47663,35 +51944,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46828] = 14, + [52405] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(712), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1031), 2, + STATE(1045), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47701,35 +51988,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46880] = 14, + [52466] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(713), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1171), 2, + STATE(1241), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47739,35 +52032,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46932] = 14, + [52527] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(278), 1, + anon_sym_struct, + ACTIONS(282), 1, + anon_sym_interface, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1601), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_LT_DASH, + STATE(238), 1, sym_qualified_type, - STATE(1220), 2, + STATE(714), 1, + sym_comment, + STATE(248), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47777,35 +52076,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [46984] = 14, + [52588] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(622), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1359), 1, + anon_sym_STAR, + ACTIONS(1363), 1, + anon_sym_LT_DASH, + STATE(715), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1206), 2, + STATE(843), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47815,35 +52120,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47036] = 14, + [52649] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(883), 1, + ACTIONS(879), 1, + anon_sym_chan, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1605), 1, - anon_sym_chan, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(716), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(843), 2, + STATE(1234), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47853,35 +52164,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47088] = 14, + [52710] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(717), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1071), 2, + STATE(1192), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47891,35 +52208,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47140] = 14, + [52771] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(278), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(282), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1601), 1, anon_sym_STAR, ACTIONS(1607), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(238), 1, sym_qualified_type, - STATE(807), 2, + STATE(718), 1, + sym_comment, + STATE(257), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47929,35 +52252,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47192] = 14, + [52832] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(278), 1, + anon_sym_struct, + ACTIONS(282), 1, + anon_sym_interface, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1601), 1, + anon_sym_STAR, + ACTIONS(1603), 1, + anon_sym_LT_DASH, + STATE(238), 1, sym_qualified_type, - STATE(1189), 2, + STATE(719), 1, + sym_comment, + STATE(264), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47967,35 +52296,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47244] = 14, + [52893] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 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, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(282), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1601), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1607), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(238), 1, sym_qualified_type, - STATE(820), 2, + STATE(720), 1, + sym_comment, + STATE(268), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48005,35 +52340,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47296] = 14, + [52954] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 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(1166), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1607), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(721), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(809), 2, + STATE(1114), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48043,35 +52384,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47348] = 14, + [53015] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, + anon_sym_struct, ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(856), 1, + anon_sym_interface, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(1349), 1, + 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(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(722), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(839), 2, + STATE(1013), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48081,35 +52428,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47400] = 14, + [53076] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(278), 1, + anon_sym_struct, + ACTIONS(282), 1, + anon_sym_interface, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(286), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1601), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_LT_DASH, + STATE(238), 1, sym_qualified_type, - STATE(1249), 2, + STATE(723), 1, + sym_comment, + STATE(261), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48119,35 +52472,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47452] = 14, + [53137] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(724), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1250), 2, + STATE(1120), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48157,35 +52516,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47504] = 14, + [53198] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(725), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1079), 2, + STATE(1190), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48195,35 +52560,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47556] = 14, + [53259] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 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(1166), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(726), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(811), 2, + STATE(819), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48233,35 +52604,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47608] = 14, + [53320] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 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(1166), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(879), 1, + anon_sym_chan, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - ACTIONS(1609), 1, - anon_sym_chan, - STATE(778), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(727), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(810), 2, + STATE(1269), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48271,35 +52648,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47660] = 14, + [53381] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1081), 2, + STATE(1014), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48309,35 +52692,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47712] = 14, + [53442] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, + anon_sym_struct, ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(856), 1, + anon_sym_interface, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(877), 1, + anon_sym_map, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1611), 1, + anon_sym_chan, + STATE(729), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(819), 2, + STATE(843), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48347,35 +52736,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47764] = 14, + [53503] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(730), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1256), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48385,35 +52780,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47816] = 14, + [53564] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1082), 2, + STATE(819), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48423,35 +52824,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47868] = 14, + [53625] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 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(1166), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1359), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1363), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(732), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(814), 2, + STATE(826), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48461,35 +52868,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47920] = 14, + [53686] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(1324), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1355), 1, + anon_sym_func, + ACTIONS(1357), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1359), 1, + anon_sym_STAR, + ACTIONS(1363), 1, + anon_sym_LT_DASH, + STATE(733), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1234), 2, + STATE(818), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48499,35 +52912,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [47972] = 14, + [53747] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 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(1158), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1134), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(734), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(805), 2, + STATE(815), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48537,35 +52956,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48024] = 14, + [53808] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1134), 1, + anon_sym_struct, + ACTIONS(1136), 1, + anon_sym_interface, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(881), 1, - anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1517), 1, + anon_sym_LT_DASH, + ACTIONS(1613), 1, + anon_sym_chan, + STATE(735), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(1245), 2, + STATE(813), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48575,35 +53000,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48076] = 14, + [53869] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 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(1166), 1, + ACTIONS(37), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(866), 1, + anon_sym_func, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(881), 1, + anon_sym_LT_DASH, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(893), 2, + STATE(1200), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48613,35 +53044,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48128] = 14, + [53930] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(737), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(820), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48651,35 +53088,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48180] = 14, + [53991] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(877), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(879), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(881), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1294), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1296), 1, + anon_sym_STAR, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(738), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(1259), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48689,35 +53132,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48232] = 14, + [54052] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(272), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(278), 1, + anon_sym_struct, + ACTIONS(282), 1, + anon_sym_interface, + ACTIONS(284), 1, anon_sym_map, - ACTIONS(881), 1, - anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1597), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1601), 1, + anon_sym_STAR, + ACTIONS(1607), 1, + anon_sym_LT_DASH, + ACTIONS(1615), 1, + anon_sym_chan, + STATE(238), 1, sym_qualified_type, - STATE(1256), 2, + STATE(739), 1, + sym_comment, + STATE(282), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(246), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48727,35 +53176,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48284] = 14, + [54113] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 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(33), 1, + ACTIONS(1136), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1599), 1, + ACTIONS(1517), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(740), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(841), 2, + STATE(811), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48765,35 +53220,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48336] = 14, + [54174] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 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(868), 1, + ACTIONS(1128), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1134), 1, + anon_sym_struct, + ACTIONS(1136), 1, + anon_sym_interface, + ACTIONS(1138), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1140), 1, anon_sym_chan, - ACTIONS(1270), 1, + ACTIONS(1507), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - ACTIONS(1603), 1, + ACTIONS(1515), 1, + anon_sym_STAR, + ACTIONS(1609), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(741), 1, + sym_comment, + STATE(786), 1, sym_qualified_type, - STATE(838), 2, + STATE(812), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(796), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48803,35 +53264,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48388] = 14, + [54235] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, + anon_sym_struct, ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(856), 1, + anon_sym_interface, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(877), 1, + anon_sym_map, + ACTIONS(879), 1, + anon_sym_chan, + ACTIONS(1294), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(742), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(844), 2, + STATE(840), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48841,35 +53308,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48440] = 14, + [54296] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_struct, + 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(35), 1, - anon_sym_map, - ACTIONS(616), 1, - anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(1270), 1, - anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(866), 1, anon_sym_func, - ACTIONS(1349), 1, + 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(1351), 1, + ACTIONS(1296), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1324), 1, + anon_sym_LPAREN, + STATE(743), 1, + sym_comment, + STATE(793), 1, sym_qualified_type, - STATE(843), 2, + STATE(826), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(823), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48879,12 +53352,18 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48492] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(694), 1, + [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, - ACTIONS(696), 17, + STATE(744), 1, + sym_comment, + ACTIONS(796), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48902,12 +53381,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [48518] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(673), 1, + [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, - ACTIONS(675), 17, + STATE(745), 1, + sym_comment, + ACTIONS(897), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48925,12 +53410,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [48544] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(702), 1, + [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, - ACTIONS(704), 17, + STATE(746), 1, + sym_comment, + ACTIONS(816), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48948,16 +53439,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [48570] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1613), 1, + [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, anon_sym_LF, - ACTIONS(1615), 1, - anon_sym_COMMA, STATE(747), 1, - aux_sym_const_spec_repeat1, - ACTIONS(1611), 15, + sym_comment, + ACTIONS(905), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48973,12 +53466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - [48600] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(677), 1, + 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(679), 17, + ACTIONS(1621), 1, + anon_sym_COMMA, + STATE(748), 2, + sym_comment, + aux_sym_const_spec_repeat1, + ACTIONS(1617), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48994,14 +53498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, - [48626] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1613), 1, + [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, - ACTIONS(1611), 16, + STATE(749), 1, + sym_comment, + ACTIONS(1617), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -49018,17 +53526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - [48651] = 3, + [54568] = 6, 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(704), 6, + ACTIONS(796), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(702), 10, + ACTIONS(794), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49039,17 +53553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [48675] = 3, + [54601] = 6, 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(696), 6, + ACTIONS(897), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(694), 10, + ACTIONS(895), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49060,17 +53580,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [48699] = 3, + [54634] = 6, 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(679), 6, + ACTIONS(816), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(677), 10, + ACTIONS(814), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49081,17 +53607,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [48723] = 3, + [54667] = 6, 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(675), 6, + ACTIONS(905), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(673), 10, + ACTIONS(903), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49102,14 +53634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_COLON, - [48747] = 4, + [54700] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1618), 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), 1, + STATE(754), 2, + sym_comment, aux_sym_expression_list_repeat1, - ACTIONS(1094), 13, + ACTIONS(1100), 13, anon_sym_EQ, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -49123,14 +53660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [48772] = 4, + [54732] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(929), 1, anon_sym_COMMA, STATE(754), 1, aux_sym_expression_list_repeat1, - ACTIONS(1621), 13, + STATE(755), 1, + sym_comment, + ACTIONS(1627), 13, anon_sym_EQ, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -49144,255 +53687,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [48797] = 11, + [54766] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1627), 1, + ACTIONS(1633), 1, anon_sym_RBRACE, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(756), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(992), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [48835] = 11, + [54815] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1631), 1, + ACTIONS(1637), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(757), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, + STATE(992), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [48873] = 11, + [54864] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1633), 1, + ACTIONS(1639), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(758), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(958), 1, + sym__interface_body, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, + STATE(1100), 1, sym_qualified_type, - STATE(1077), 5, - sym__interface_body, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [48911] = 11, + [54913] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_TILDE, ACTIONS(1635), 1, + anon_sym_TILDE, + ACTIONS(1641), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(759), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(976), 5, + STATE(996), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [48949] = 11, + [54962] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1637), 1, + ACTIONS(1643), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(760), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [48987] = 11, + [55011] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1639), 1, + ACTIONS(1645), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(761), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [49025] = 11, + [55060] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1641), 1, + ACTIONS(1647), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(762), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [49063] = 11, + [55109] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1643), 1, + ACTIONS(1649), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(763), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(964), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [49101] = 11, + [55158] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - ACTIONS(1645), 1, + ACTIONS(1651), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(764), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [49139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, + [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, - ACTIONS(1647), 12, + STATE(765), 1, + sym_comment, + ACTIONS(1653), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49405,12 +54017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49160] = 3, + [55237] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 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, - ACTIONS(1651), 12, + STATE(766), 1, + sym_comment, + ACTIONS(1657), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49423,12 +54041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1657), 1, + [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, - ACTIONS(1655), 12, + STATE(767), 1, + sym_comment, + ACTIONS(1661), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49441,12 +54065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, + [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, - ACTIONS(1647), 12, + STATE(768), 1, + sym_comment, + ACTIONS(1657), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49459,59 +54089,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49223] = 5, - ACTIONS(3), 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, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - sym_identifier, - [49248] = 10, + [55327] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 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(1623), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1625), 1, + ACTIONS(1631), 1, anon_sym_STAR, - ACTIONS(1629), 1, + ACTIONS(1635), 1, anon_sym_TILDE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(769), 1, + sym_comment, + STATE(900), 1, sym_struct_term, - STATE(978), 1, + STATE(901), 1, + sym_constraint_term, + STATE(991), 1, sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, + STATE(1083), 1, sym__interface_body, + STATE(1100), 1, + sym_qualified_type, + STATE(1068), 4, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [49283] = 4, + [55373] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1664), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1667), 1, anon_sym_EQ, - ACTIONS(1666), 1, + ACTIONS(1669), 1, anon_sym_COLON_EQ, - ACTIONS(1647), 11, + STATE(770), 1, + sym_comment, + ACTIONS(1657), 11, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49523,122 +54146,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49306] = 3, + [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, 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(1611), 6, + ACTIONS(1617), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(1613), 6, + ACTIONS(1619), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - [49326] = 5, + [55466] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1672), 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), 1, + STATE(773), 2, + sym_comment, aux_sym_field_declaration_repeat1, - ACTIONS(1670), 4, + ACTIONS(1676), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1668), 6, + ACTIONS(1674), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49350] = 5, + [55497] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1679), 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), 1, + STATE(774), 2, + sym_comment, aux_sym_parameter_declaration_repeat1, - ACTIONS(1677), 4, + ACTIONS(1683), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1675), 6, + ACTIONS(1681), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [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, + [55528] = 6, 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(1686), 5, + ACTIONS(1690), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1684), 6, + ACTIONS(1688), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49418] = 3, + [55556] = 6, 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(1690), 5, + ACTIONS(1694), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1688), 6, + ACTIONS(1692), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49437] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(654), 1, + [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, anon_sym_LF, - ACTIONS(1682), 1, + ACTIONS(1122), 1, + anon_sym_DOT, + ACTIONS(1696), 1, anon_sym_LBRACK, - STATE(800), 1, + STATE(777), 1, + sym_comment, + STATE(804), 1, sym_type_arguments, - ACTIONS(656), 7, + ACTIONS(626), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49646,179 +54311,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49459] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(1692), 1, - sym_identifier, - ACTIONS(1694), 1, - anon_sym_DOT, - ACTIONS(1696), 1, - sym_blank_identifier, - ACTIONS(1698), 1, - anon_sym_RPAREN, - ACTIONS(1700), 1, - sym_raw_string_literal, - 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, - [49493] = 3, + [55618] = 6, 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(1704), 4, + ACTIONS(1700), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1702), 6, + ACTIONS(1698), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49511] = 11, + [55645] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 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(1692), 1, + ACTIONS(1702), 1, sym_identifier, - ACTIONS(1694), 1, + ACTIONS(1704), 1, anon_sym_DOT, - ACTIONS(1696), 1, + ACTIONS(1706), 1, sym_blank_identifier, - ACTIONS(1700), 1, + ACTIONS(1708), 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, + sym_raw_string_literal, + ACTIONS(1712), 1, anon_sym_RPAREN, - STATE(779), 1, + STATE(780), 1, + sym_comment, + STATE(782), 1, aux_sym_import_spec_list_repeat1, - STATE(1094), 1, + STATE(1031), 1, sym_dot, - STATE(1142), 1, + STATE(1140), 1, sym_interpreted_string_literal, - STATE(1178), 1, + STATE(1186), 1, sym_import_spec, - [49545] = 3, + [55731] = 6, 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(1710), 4, + ACTIONS(1716), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1708), 6, + ACTIONS(1714), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49563] = 5, + [55758] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1718), 1, + sym_identifier, + ACTIONS(1721), 1, anon_sym_DOT, - ACTIONS(1712), 1, - anon_sym_LBRACK, - STATE(817), 1, - sym_type_arguments, - ACTIONS(618), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [49585] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - sym_identifier, - ACTIONS(1717), 1, - anon_sym_DOT, - ACTIONS(1720), 1, + ACTIONS(1724), 1, sym_blank_identifier, - ACTIONS(1723), 1, + ACTIONS(1727), 1, anon_sym_RPAREN, - ACTIONS(1725), 1, + ACTIONS(1729), 1, sym_raw_string_literal, - ACTIONS(1728), 1, + ACTIONS(1732), 1, anon_sym_DQUOTE, - STATE(784), 1, - aux_sym_import_spec_list_repeat1, - STATE(1094), 1, + STATE(1031), 1, sym_dot, - STATE(1142), 1, + STATE(1140), 1, sym_interpreted_string_literal, - STATE(1178), 1, + STATE(1186), 1, sym_import_spec, - [49619] = 10, - ACTIONS(3), 1, + STATE(782), 2, sym_comment, - ACTIONS(1694), 1, - anon_sym_DOT, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, - sym_blank_identifier, - ACTIONS(1735), 1, - anon_sym_LPAREN, - ACTIONS(1737), 1, - sym_raw_string_literal, - ACTIONS(1739), 1, - anon_sym_DQUOTE, - STATE(273), 1, - sym_interpreted_string_literal, - STATE(1016), 1, - sym_dot, - STATE(272), 2, - sym_import_spec, - sym_import_spec_list, - [49651] = 3, + aux_sym_import_spec_list_repeat1, + [55799] = 6, 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(1743), 4, + ACTIONS(1737), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1741), 6, + ACTIONS(1735), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49669] = 3, - ACTIONS(286), 1, + [55826] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1367), 1, + anon_sym_DOT, + ACTIONS(1739), 1, + anon_sym_LBRACK, + STATE(784), 1, sym_comment, - ACTIONS(770), 1, + STATE(828), 1, + sym_type_arguments, + ACTIONS(624), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + [55857] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1704), 1, + anon_sym_DOT, + ACTIONS(1741), 1, + sym_identifier, + ACTIONS(1743), 1, + sym_blank_identifier, + ACTIONS(1745), 1, + anon_sym_LPAREN, + ACTIONS(1747), 1, + sym_raw_string_literal, + ACTIONS(1749), 1, + anon_sym_DQUOTE, + STATE(293), 1, + sym_interpreted_string_literal, + STATE(785), 1, + sym_comment, + STATE(1093), 1, + sym_dot, + STATE(287), 2, + sym_import_spec, + sym_import_spec_list, + [55898] = 8, + 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(772), 8, + ACTIONS(1696), 1, + anon_sym_LBRACK, + STATE(786), 1, + sym_comment, + STATE(794), 1, + sym_type_arguments, + ACTIONS(639), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_PIPE, anon_sym_case, anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49686] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(794), 1, + [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, anon_sym_LF, - ACTIONS(796), 8, + STATE(787), 1, + sym_comment, + ACTIONS(824), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49827,27 +54554,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49703] = 4, + [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, sym_comment, - ACTIONS(1712), 1, - anon_sym_LBRACK, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(909), 8, + anon_sym_SEMI, anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [49722] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(710), 1, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_case, + anon_sym_default, + sym_raw_string_literal, + anon_sym_DQUOTE, + [55981] = 6, + 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, - ACTIONS(712), 8, + STATE(789), 1, + sym_comment, + ACTIONS(702), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49856,12 +54594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49739] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(901), 1, + [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, - ACTIONS(903), 8, + STATE(790), 1, + sym_comment, + ACTIONS(776), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49870,12 +54614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49756] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(889), 1, + [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, - ACTIONS(891), 8, + STATE(791), 1, + sym_comment, + ACTIONS(852), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_LBRACK, @@ -49884,12 +54634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49773] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(698), 1, + [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, - ACTIONS(700), 8, + STATE(792), 1, + sym_comment, + ACTIONS(828), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49898,28 +54654,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49790] = 6, + [56085] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(1712), 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(438), 1, - sym_literal_value, - STATE(828), 1, + STATE(793), 1, + sym_comment, + STATE(825), 1, sym_type_arguments, - ACTIONS(654), 4, + ACTIONS(637), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RBRACK, - [49812] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(893), 1, + 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, - ACTIONS(895), 7, + STATE(794), 1, + sym_comment, + ACTIONS(710), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49927,11 +54694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49828] = 3, - ACTIONS(286), 1, - sym_comment, + [56138] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, ACTIONS(762), 1, anon_sym_LF, + STATE(795), 1, + sym_comment, ACTIONS(764), 7, anon_sym_SEMI, anon_sym_EQ, @@ -49940,12 +54713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49844] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(665), 1, + [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, - ACTIONS(667), 7, + STATE(796), 1, + sym_comment, + ACTIONS(639), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49953,12 +54732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49860] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(790), 1, + [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, - ACTIONS(792), 7, + STATE(797), 1, + sym_comment, + ACTIONS(686), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49966,12 +54751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49876] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(848), 1, + [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, - ACTIONS(850), 7, + STATE(798), 1, + sym_comment, + ACTIONS(784), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49979,12 +54770,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49892] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(766), 1, + 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, anon_sym_LF, - ACTIONS(768), 7, + STATE(800), 1, + sym_comment, + ACTIONS(836), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49992,12 +54811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49908] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(726), 1, + [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, - ACTIONS(728), 7, + STATE(801), 1, + sym_comment, + ACTIONS(832), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50005,12 +54830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49924] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(738), 1, + [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, - ACTIONS(740), 7, + STATE(802), 1, + sym_comment, + ACTIONS(804), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50018,12 +54849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49940] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(742), 1, + [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, - ACTIONS(744), 7, + STATE(803), 1, + sym_comment, + ACTIONS(690), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50031,12 +54868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49956] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(905), 1, + [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, - ACTIONS(907), 7, + STATE(804), 1, + sym_comment, + ACTIONS(848), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50044,12 +54887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49972] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(897), 1, + [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, - ACTIONS(899), 7, + STATE(805), 1, + sym_comment, + ACTIONS(756), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50057,24 +54906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49988] = 2, + [56419] = 6, ACTIONS(3), 1, - sym_comment, - 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(704), 1, anon_sym_LF, - ACTIONS(756), 7, + STATE(806), 1, + sym_comment, + ACTIONS(706), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50082,12 +54925,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50018] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(758), 1, + [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, - ACTIONS(760), 7, + STATE(807), 1, + sym_comment, + ACTIONS(901), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50095,12 +54944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50034] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(726), 1, + [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, - ACTIONS(728), 7, + STATE(808), 1, + sym_comment, + ACTIONS(694), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50108,12 +54963,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50050] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(726), 1, + 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, anon_sym_LF, - ACTIONS(728), 7, + STATE(810), 1, + sym_comment, + ACTIONS(752), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50121,12 +55000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50066] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(814), 1, + [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, - ACTIONS(816), 7, + STATE(811), 1, + sym_comment, + ACTIONS(772), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50134,12 +55019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50082] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(654), 1, + [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, - ACTIONS(656), 7, + STATE(812), 1, + sym_comment, + ACTIONS(694), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50147,12 +55038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50098] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(810), 1, + [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, - ACTIONS(812), 7, + STATE(813), 1, + sym_comment, + ACTIONS(694), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50160,12 +55057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50114] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(786), 1, + [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, - ACTIONS(788), 7, + STATE(814), 1, + sym_comment, + ACTIONS(682), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50173,12 +55076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50130] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(774), 1, + [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, - ACTIONS(776), 7, + STATE(815), 1, + sym_comment, + ACTIONS(800), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50186,10 +55095,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50146] = 2, + [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, - ACTIONS(654), 7, + STATE(1047), 1, + sym_interpreted_string_literal, + ACTIONS(1753), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [56699] = 5, + 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, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50197,10 +55134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50159] = 2, + [56721] = 5, 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(758), 7, + ACTIONS(754), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50208,10 +55151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50172] = 2, + [56743] = 5, 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(897), 7, + ACTIONS(798), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50219,10 +55168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50185] = 2, + [56765] = 5, 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(726), 7, + ACTIONS(704), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50230,10 +55185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50198] = 2, + [56787] = 5, 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(786), 7, + ACTIONS(700), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50241,10 +55202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50211] = 2, + [56809] = 5, 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(901), 7, + ACTIONS(750), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50252,24 +55219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50224] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1094), 1, - anon_sym_LF, - ACTIONS(1745), 1, - anon_sym_COMMA, - 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, + [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, sym_comment, - ACTIONS(698), 7, + ACTIONS(637), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50277,10 +55236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50256] = 2, + [56853] = 5, 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(893), 7, + ACTIONS(692), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50288,10 +55253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50269] = 2, + [56875] = 5, 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(774), 7, + ACTIONS(708), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50299,10 +55270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50282] = 2, + [56897] = 5, 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(905), 7, + ACTIONS(770), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50310,24 +55287,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50295] = 5, - ACTIONS(286), 1, + [56919] = 5, + 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(1132), 1, + ACTIONS(684), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, 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, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + [56941] = 5, 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(766), 7, + ACTIONS(846), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50335,10 +55321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50327] = 2, + [56963] = 5, 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(742), 7, + ACTIONS(834), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50346,10 +55338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50340] = 2, + [56985] = 7, + 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(794), 7, + ACTIONS(899), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50357,10 +55374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50353] = 2, + [57033] = 5, 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(790), 7, + ACTIONS(762), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50368,10 +55391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50366] = 2, + [57055] = 5, 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(810), 7, + ACTIONS(830), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50379,53 +55408,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50379] = 7, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1152), 1, + [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, anon_sym_DOT, - ACTIONS(1206), 1, + ACTIONS(1228), 1, anon_sym_LPAREN, - ACTIONS(1750), 1, + ACTIONS(1760), 1, anon_sym_LF, - ACTIONS(1754), 1, + ACTIONS(1764), 1, anon_sym_PIPE, - STATE(628), 1, + STATE(658), 1, sym_parameter_list, - ACTIONS(1752), 2, + STATE(834), 1, + sym_comment, + ACTIONS(1762), 2, anon_sym_SEMI, anon_sym_RBRACE, - [50402] = 2, + [57109] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(738), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1168), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [50415] = 7, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1152), 1, - anon_sym_DOT, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1756), 1, + ACTIONS(1627), 1, anon_sym_LF, - ACTIONS(1760), 1, - sym_raw_string_literal, - STATE(1111), 1, - sym_interpreted_string_literal, - ACTIONS(1758), 2, + STATE(830), 1, + aux_sym_expression_list_repeat1, + STATE(835), 1, + sym_comment, + ACTIONS(1766), 4, anon_sym_SEMI, anon_sym_RBRACE, - [50438] = 2, + anon_sym_case, + anon_sym_default, + [57137] = 5, 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(710), 7, + ACTIONS(680), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50433,10 +55467,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50451] = 2, + [57159] = 5, 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(762), 7, + ACTIONS(907), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50444,10 +55484,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50464] = 2, + [57181] = 5, 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(754), 7, + ACTIONS(774), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50455,10 +55501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50477] = 2, + [57203] = 5, 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(848), 7, + ACTIONS(802), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50466,10 +55518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50490] = 2, + [57225] = 5, 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(665), 7, + ACTIONS(782), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50477,10 +55535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50503] = 2, + [57247] = 5, 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(726), 7, + ACTIONS(822), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50488,10 +55552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50516] = 2, + [57269] = 5, 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(770), 7, + ACTIONS(826), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50499,10 +55569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50529] = 2, + [57291] = 5, 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(726), 7, + ACTIONS(692), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50510,10 +55586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50542] = 2, + [57313] = 5, 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(814), 7, + ACTIONS(688), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50521,6246 +55603,8963 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50555] = 5, + [57335] = 8, 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, - ACTIONS(1762), 1, + STATE(851), 1, + aux_sym__statement_list_repeat1, + ACTIONS(1772), 3, anon_sym_RBRACE, - ACTIONS(1764), 1, anon_sym_case, - ACTIONS(1766), 1, anon_sym_default, - STATE(864), 3, - sym_expression_case, - sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50573] = 5, + [57362] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1768), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1774), 1, anon_sym_RBRACE, - ACTIONS(1770), 1, + ACTIONS(1776), 1, anon_sym_case, - STATE(860), 3, + ACTIONS(1778), 1, + anon_sym_default, + STATE(846), 1, + sym_comment, + STATE(858), 1, + aux_sym_expression_switch_statement_repeat1, + STATE(1098), 2, + sym_expression_case, sym_default_case, - sym_type_case, - aux_sym_type_switch_statement_repeat1, - [50591] = 5, + [57391] = 7, 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(1764), 1, + ACTIONS(1782), 4, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_case, - ACTIONS(1766), 1, anon_sym_default, - ACTIONS(1772), 1, + [57416] = 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(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, anon_sym_RBRACE, - STATE(864), 3, - sym_expression_case, - sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50609] = 4, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(1774), 1, + 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, anon_sym_LF, - ACTIONS(1778), 1, - anon_sym_else, - ACTIONS(1776), 4, + ACTIONS(1796), 1, + sym_raw_string_literal, + STATE(850), 1, + sym_comment, + STATE(1050), 1, + sym_interpreted_string_literal, + ACTIONS(1794), 2, + 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_LF, + ACTIONS(1800), 1, anon_sym_SEMI, + STATE(851), 1, + sym_comment, + STATE(854), 1, + aux_sym__statement_list_repeat1, + ACTIONS(210), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [50625] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1780), 1, + [57526] = 7, + 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(1782), 1, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(852), 1, + sym_comment, + ACTIONS(1804), 4, anon_sym_SEMI, - STATE(859), 1, - aux_sym__statement_list_repeat1, - ACTIONS(1784), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [50643] = 5, + [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(1786), 1, + 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, + 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, anon_sym_RBRACE, - ACTIONS(1788), 1, anon_sym_case, - ACTIONS(1791), 1, anon_sym_default, - STATE(850), 3, + [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, + anon_sym_case, + ACTIONS(1778), 1, + anon_sym_default, + ACTIONS(1818), 1, + anon_sym_RBRACE, + STATE(855), 1, + sym_comment, + STATE(861), 1, + aux_sym_expression_switch_statement_repeat1, + STATE(1098), 2, + sym_expression_case, sym_default_case, - sym_communication_case, - aux_sym_select_statement_repeat1, - [50661] = 5, - ACTIONS(3), 1, + [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, + anon_sym_case, + ACTIONS(1778), 1, + anon_sym_default, + ACTIONS(1820), 1, + anon_sym_RBRACE, + STATE(846), 1, + aux_sym_expression_switch_statement_repeat1, + STATE(856), 1, sym_comment, - ACTIONS(1766), 1, + STATE(1098), 2, + sym_expression_case, + sym_default_case, + [57657] = 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(1794), 1, + ACTIONS(1822), 1, anon_sym_RBRACE, - ACTIONS(1796), 1, + ACTIONS(1824), 1, anon_sym_case, - STATE(850), 3, + STATE(857), 1, + sym_comment, + STATE(870), 1, + aux_sym_select_statement_repeat1, + STATE(1091), 2, sym_default_case, sym_communication_case, - aux_sym_select_statement_repeat1, - [50679] = 5, + [57686] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 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(1766), 1, + ACTIONS(1831), 1, anon_sym_default, - ACTIONS(1798), 1, - anon_sym_RBRACE, - STATE(864), 3, + STATE(858), 2, + sym_comment, + aux_sym_expression_switch_statement_repeat1, + STATE(1098), 2, sym_expression_case, sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, + [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, anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1778), 1, anon_sym_default, - ACTIONS(1800), 1, + ACTIONS(1834), 1, anon_sym_RBRACE, - STATE(845), 3, + STATE(859), 1, + sym_comment, + STATE(878), 1, + aux_sym_expression_switch_statement_repeat1, + STATE(1098), 2, sym_expression_case, sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50715] = 4, - ACTIONS(3), 1, - sym_comment, - 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, - sym_comment, - 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, + [57742] = 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(1836), 1, + anon_sym_RBRACE, + ACTIONS(1838), 1, + anon_sym_case, + STATE(860), 1, sym_comment, - ACTIONS(1764), 1, + STATE(875), 1, + aux_sym_type_switch_statement_repeat1, + STATE(1026), 2, + 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, anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1778), 1, anon_sym_default, - ACTIONS(1805), 1, + ACTIONS(1840), 1, anon_sym_RBRACE, - STATE(847), 3, - sym_expression_case, - sym_default_case, + STATE(858), 1, aux_sym_expression_switch_statement_repeat1, - [50767] = 5, - ACTIONS(3), 1, + STATE(861), 1, sym_comment, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1796), 1, - anon_sym_case, - ACTIONS(1807), 1, - anon_sym_RBRACE, - STATE(851), 3, + STATE(1098), 2, + sym_expression_case, sym_default_case, - sym_communication_case, - aux_sym_select_statement_repeat1, - [50785] = 7, + [57800] = 9, 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1146), 1, + anon_sym_DQUOTE, + ACTIONS(1842), 1, anon_sym_LF, - ACTIONS(1813), 1, + ACTIONS(1846), 1, + sym_raw_string_literal, + STATE(862), 1, + sym_comment, + STATE(1048), 1, + sym_interpreted_string_literal, + ACTIONS(1844), 2, anon_sym_SEMI, - STATE(866), 1, - aux_sym__statement_list_repeat1, - ACTIONS(206), 3, anon_sym_RBRACE, + [57829] = 8, + 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, - [50825] = 5, - ACTIONS(3), 1, + STATE(863), 2, sym_comment, - ACTIONS(1766), 1, + 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(1770), 1, + ACTIONS(1838), 1, anon_sym_case, - ACTIONS(1815), 1, + ACTIONS(1856), 1, anon_sym_RBRACE, - STATE(871), 3, - sym_default_case, - sym_type_case, + STATE(860), 1, aux_sym_type_switch_statement_repeat1, - [50843] = 6, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1817), 1, - anon_sym_LF, - ACTIONS(1821), 1, - sym_raw_string_literal, - STATE(1034), 1, - sym_interpreted_string_literal, - ACTIONS(1819), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [50863] = 5, - ACTIONS(3), 1, + STATE(864), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_case, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1823), 1, - anon_sym_RBRACE, - STATE(876), 3, - sym_expression_case, + STATE(1026), 2, sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50881] = 5, + sym_type_case, + [57885] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1184), 1, - anon_sym_COMMA, - ACTIONS(1748), 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, - STATE(855), 1, + ACTIONS(1858), 1, + anon_sym_COMMA, + STATE(865), 2, + sym_comment, aux_sym_expression_list_repeat1, - ACTIONS(1621), 3, + ACTIONS(1100), 3, anon_sym_SEMI, anon_sym_EQ, anon_sym_COLON_EQ, - [50899] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_RBRACE, - ACTIONS(1827), 1, + [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, anon_sym_case, - ACTIONS(1830), 1, + ACTIONS(1778), 1, anon_sym_default, - STATE(864), 3, - sym_expression_case, - sym_default_case, + ACTIONS(1861), 1, + anon_sym_RBRACE, + STATE(858), 1, aux_sym_expression_switch_statement_repeat1, - [50917] = 4, - ACTIONS(286), 1, + STATE(866), 1, sym_comment, - ACTIONS(1833), 1, + STATE(1098), 2, + 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, anon_sym_LF, - 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, + ACTIONS(1867), 1, + sym_raw_string_literal, + STATE(867), 1, sym_comment, - ACTIONS(1839), 1, - anon_sym_LF, - ACTIONS(1842), 1, + STATE(1035), 1, + sym_interpreted_string_literal, + ACTIONS(1865), 2, anon_sym_SEMI, - STATE(866), 1, - aux_sym__statement_list_repeat1, - ACTIONS(1845), 3, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [50951] = 4, + [57968] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(306), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(624), 1, anon_sym_LBRACE, - STATE(438), 1, - sym_literal_value, - ACTIONS(654), 4, + ACTIONS(1367), 1, + anon_sym_DOT, + ACTIONS(1739), 1, + anon_sym_LBRACK, + ACTIONS(1869), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [50967] = 6, - ACTIONS(286), 1, + STATE(27), 1, + sym_parameter_list, + STATE(828), 1, + sym_type_arguments, + STATE(868), 1, sym_comment, - ACTIONS(1176), 1, + [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, anon_sym_DQUOTE, - ACTIONS(1847), 1, + ACTIONS(1863), 1, anon_sym_LF, - ACTIONS(1851), 1, + ACTIONS(1871), 1, sym_raw_string_literal, - STATE(1097), 1, - sym_interpreted_string_literal, - ACTIONS(1849), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [50987] = 6, - ACTIONS(286), 1, + STATE(869), 1, sym_comment, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1853), 1, - anon_sym_LF, - ACTIONS(1857), 1, - sym_raw_string_literal, - STATE(1037), 1, + STATE(1057), 1, sym_interpreted_string_literal, - ACTIONS(1855), 2, + ACTIONS(1865), 2, anon_sym_SEMI, anon_sym_RBRACE, - [51007] = 6, - ACTIONS(286), 1, - sym_comment, - 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, + [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, - [51027] = 5, + STATE(863), 1, + aux_sym_select_statement_repeat1, + STATE(870), 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, + anon_sym_LF, + ACTIONS(1879), 1, + anon_sym_else, + STATE(871), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1877), 4, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(1863), 1, anon_sym_case, - ACTIONS(1866), 1, anon_sym_default, - STATE(871), 3, - sym_default_case, - sym_type_case, - aux_sym_type_switch_statement_repeat1, - [51045] = 4, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(1869), 1, + 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, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1883), 1, anon_sym_LF, - ACTIONS(1873), 4, + STATE(873), 1, + sym_comment, + ACTIONS(1885), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51061] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1875), 1, + [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, sym_identifier, - ACTIONS(1877), 1, + ACTIONS(1889), 1, anon_sym_LF, - ACTIONS(1879), 4, + STATE(874), 1, + sym_comment, + ACTIONS(1891), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51077] = 5, + [58159] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 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, anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1898), 1, anon_sym_default, - ACTIONS(1881), 1, - anon_sym_RBRACE, - STATE(852), 3, - sym_expression_case, - sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [51095] = 4, - ACTIONS(286), 1, + STATE(875), 2, sym_comment, - ACTIONS(1883), 1, + aux_sym_type_switch_statement_repeat1, + STATE(1026), 2, + 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(1887), 1, - anon_sym_EQ, - ACTIONS(1885), 4, + ACTIONS(1905), 1, + anon_sym_else, + STATE(876), 1, + sym_comment, + ACTIONS(1903), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51111] = 5, + [58211] = 7, 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(1764), 1, + 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, anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1778), 1, anon_sym_default, - ACTIONS(1889), 1, + ACTIONS(1907), 1, anon_sym_RBRACE, - STATE(864), 3, - sym_expression_case, - sym_default_case, + STATE(858), 1, aux_sym_expression_switch_statement_repeat1, - [51129] = 4, - ACTIONS(286), 1, + STATE(878), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LF, - ACTIONS(1895), 1, - anon_sym_else, - ACTIONS(1893), 4, - anon_sym_SEMI, - anon_sym_RBRACE, + STATE(1098), 2, + 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, anon_sym_case, + ACTIONS(1778), 1, anon_sym_default, - [51145] = 6, - ACTIONS(286), 1, - sym_comment, - 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, + ACTIONS(1909), 1, anon_sym_RBRACE, - [51165] = 3, - ACTIONS(3), 1, + STATE(866), 1, + aux_sym_expression_switch_statement_repeat1, + STATE(879), 1, sym_comment, - ACTIONS(1903), 2, - sym_blank_identifier, + STATE(1098), 2, + sym_expression_case, + sym_default_case, + [58294] = 7, + 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_identifier, - ACTIONS(1723), 4, - anon_sym_DOT, + ACTIONS(1914), 1, anon_sym_RPAREN, - sym_raw_string_literal, - anon_sym_DQUOTE, - [51179] = 3, - ACTIONS(286), 1, + STATE(880), 2, sym_comment, - ACTIONS(1905), 1, + 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, anon_sym_LF, - ACTIONS(1907), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51192] = 3, - ACTIONS(286), 1, + STATE(881), 1, sym_comment, - ACTIONS(1909), 1, - anon_sym_LF, - ACTIONS(1911), 4, + ACTIONS(1918), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51205] = 5, + [58340] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - sym_identifier, - ACTIONS(1916), 1, - anon_sym_RPAREN, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1920), 1, + anon_sym_LF, 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(1918), 1, - anon_sym_LF, - ACTIONS(1920), 4, + ACTIONS(1922), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51235] = 6, + [58362] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 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(1178), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1739), 1, anon_sym_LBRACK, - STATE(577), 1, + STATE(399), 1, sym_literal_value, - STATE(828), 1, + STATE(825), 1, sym_type_arguments, - [51254] = 3, - ACTIONS(286), 1, + STATE(883), 1, sym_comment, - ACTIONS(1922), 1, + [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, anon_sym_LF, - ACTIONS(1924), 4, + STATE(884), 1, + sym_comment, + ACTIONS(1926), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51267] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1926), 1, + [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, - ACTIONS(1928), 4, + STATE(885), 1, + sym_comment, + ACTIONS(1930), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51280] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1930), 1, + [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, anon_sym_LF, - ACTIONS(1932), 4, + STATE(886), 1, + sym_comment, + ACTIONS(1934), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51293] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1934), 1, + [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, - ACTIONS(1936), 4, + STATE(887), 1, + sym_comment, + ACTIONS(1938), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51306] = 5, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(1938), 1, + ACTIONS(1942), 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, anon_sym_LF, - ACTIONS(1942), 1, - anon_sym_PIPE, STATE(889), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(1940), 2, + sym_comment, + ACTIONS(1946), 4, anon_sym_SEMI, anon_sym_RBRACE, - [51323] = 6, + anon_sym_case, + anon_sym_default, + [58522] = 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(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(1949), 1, + ACTIONS(1950), 4, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(996), 1, - sym_field_declaration, - [51342] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1951), 1, + 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, anon_sym_LF, - ACTIONS(1955), 1, - anon_sym_PIPE, STATE(891), 1, - aux_sym_constraint_elem_repeat1, - ACTIONS(1953), 2, + sym_comment, + ACTIONS(1954), 4, anon_sym_SEMI, anon_sym_RBRACE, - [51359] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1958), 1, + 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, - ACTIONS(1960), 4, + STATE(892), 1, + sym_comment, + ACTIONS(714), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51372] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1962), 1, + [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, - ACTIONS(1964), 4, + STATE(893), 1, + sym_comment, + ACTIONS(1958), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51385] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1966), 1, + [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, - ACTIONS(1968), 4, + STATE(894), 1, + sym_comment, + ACTIONS(1962), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51398] = 6, + [58632] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 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(1712), 1, + ACTIONS(1739), 1, anon_sym_LBRACK, - ACTIONS(1970), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - STATE(516), 1, + STATE(336), 1, sym_literal_value, - STATE(828), 1, + STATE(825), 1, sym_type_arguments, - [51417] = 3, - ACTIONS(286), 1, + STATE(895), 1, sym_comment, - ACTIONS(1972), 1, + [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, anon_sym_LF, - ACTIONS(1974), 4, + STATE(896), 1, + sym_comment, + ACTIONS(1968), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51430] = 6, + [58682] = 6, ACTIONS(3), 1, - sym_comment, - 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1970), 1, anon_sym_LF, - ACTIONS(1980), 4, + STATE(897), 1, + sym_comment, + ACTIONS(1972), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51462] = 5, + [58704] = 6, ACTIONS(3), 1, - sym_comment, - 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1974), 1, anon_sym_LF, - ACTIONS(820), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51492] = 3, - ACTIONS(286), 1, + STATE(898), 1, sym_comment, - ACTIONS(1986), 1, - anon_sym_LF, - ACTIONS(1988), 4, + ACTIONS(1976), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51505] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(1990), 1, - anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [51524] = 6, + [58726] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 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(1712), 1, + ACTIONS(1739), 1, anon_sym_LBRACK, - ACTIONS(1992), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(373), 1, sym_literal_value, - STATE(828), 1, + STATE(825), 1, sym_type_arguments, - [51543] = 3, - ACTIONS(286), 1, + STATE(899), 1, sym_comment, - ACTIONS(1994), 1, + [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, anon_sym_LF, - ACTIONS(1996), 4, + ACTIONS(1984), 1, + anon_sym_PIPE, + STATE(900), 1, + sym_comment, + STATE(918), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(1982), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51556] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1998), 1, + [58780] = 8, + 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(2000), 4, + 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, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51569] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2002), 1, + [58806] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(1992), 1, anon_sym_LF, - ACTIONS(2004), 4, + STATE(902), 1, + sym_comment, + ACTIONS(1994), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51582] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2006), 1, + [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, - ACTIONS(2008), 4, + STATE(903), 1, + sym_comment, + ACTIONS(1998), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51595] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2010), 1, + [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, - ACTIONS(1845), 4, + STATE(904), 1, + sym_comment, + ACTIONS(2002), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51608] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2012), 1, + [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, - ACTIONS(2014), 4, + STATE(905), 1, + sym_comment, + ACTIONS(2006), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51621] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2016), 1, + 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, anon_sym_LF, - ACTIONS(2018), 4, + STATE(907), 1, + sym_comment, + ACTIONS(2016), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51634] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2020), 1, + [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, - 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, + STATE(908), 1, sym_comment, - ACTIONS(2026), 1, - anon_sym_LF, - ACTIONS(2028), 4, + ACTIONS(2020), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51664] = 6, + [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, + sym_comment, + ACTIONS(2024), 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, + anon_sym_LF, + STATE(910), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(2028), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [59010] = 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(1947), 1, + ACTIONS(2010), 1, anon_sym_STAR, ACTIONS(2030), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(848), 1, sym_qualified_type, - STATE(966), 1, + STATE(911), 1, + sym_comment, + STATE(1051), 1, sym_field_declaration, - [51683] = 5, + [59038] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, 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, - 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, + STATE(912), 1, sym_comment, - ACTIONS(2040), 1, - anon_sym_LF, - ACTIONS(2042), 4, + ACTIONS(2034), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51749] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2044), 1, + 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, anon_sym_LF, - ACTIONS(2046), 4, + STATE(914), 1, + sym_comment, + ACTIONS(1816), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51762] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2048), 1, + [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, - ACTIONS(2050), 4, + STATE(915), 1, + sym_comment, + STATE(950), 1, + aux_sym_constraint_elem_repeat1, + ACTIONS(2042), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51775] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2052), 1, + 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, anon_sym_LF, - ACTIONS(2054), 4, + STATE(917), 1, + sym_comment, + ACTIONS(2048), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51788] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2056), 1, + [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, - ACTIONS(2058), 4, + STATE(918), 1, + sym_comment, + STATE(951), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(2052), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51801] = 3, - ACTIONS(286), 1, + [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, 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, - [51814] = 3, - ACTIONS(286), 1, - sym_comment, + [59284] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, 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, - [51827] = 6, + [59306] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_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(911), 1, - aux_sym_constraint_elem_repeat1, - ACTIONS(2072), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [51863] = 3, - ACTIONS(286), 1, + STATE(923), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_LF, - ACTIONS(2076), 4, + ACTIONS(2070), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51876] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2038), 1, - anon_sym_PIPE, - ACTIONS(2078), 1, + [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, anon_sym_LF, - STATE(915), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(2080), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [51893] = 3, - ACTIONS(286), 1, + STATE(924), 1, sym_comment, - ACTIONS(2082), 1, - anon_sym_LF, - ACTIONS(2084), 4, + ACTIONS(2074), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51906] = 5, + [59350] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - sym_identifier, - 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, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2008), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(2010), 1, anon_sym_STAR, - ACTIONS(2088), 1, + ACTIONS(2076), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(848), 1, sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [51942] = 3, - ACTIONS(286), 1, + STATE(925), 1, sym_comment, - ACTIONS(2090), 1, + STATE(993), 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, - ACTIONS(2092), 4, + STATE(926), 1, + sym_comment, + ACTIONS(2080), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51955] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2094), 1, + 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, anon_sym_LF, - ACTIONS(2096), 4, + STATE(928), 1, + sym_comment, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51968] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2098), 1, + [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, - ACTIONS(2100), 4, + STATE(929), 1, + sym_comment, + ACTIONS(2090), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51981] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2102), 1, + [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, anon_sym_LF, - ACTIONS(2104), 4, + STATE(932), 1, + sym_comment, + ACTIONS(2098), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51994] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2106), 1, + [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, - ACTIONS(2108), 4, + STATE(933), 1, + sym_comment, + ACTIONS(2102), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52007] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2110), 1, + [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, anon_sym_LF, - ACTIONS(2112), 4, + STATE(935), 1, + sym_comment, + ACTIONS(2106), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52020] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2114), 1, + [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, - ACTIONS(2116), 4, + STATE(936), 1, + sym_comment, + ACTIONS(2110), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52033] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2118), 1, + [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, - ACTIONS(2120), 4, + STATE(937), 1, + sym_comment, + ACTIONS(2114), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52046] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2122), 1, + [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, - ACTIONS(2124), 4, + STATE(938), 1, + sym_comment, + ACTIONS(2118), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52059] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2126), 1, + [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, - ACTIONS(2128), 4, + STATE(939), 1, + sym_comment, + ACTIONS(2122), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52072] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2130), 1, + [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, - ACTIONS(2132), 4, + STATE(940), 1, + sym_comment, + ACTIONS(2126), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52085] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2134), 1, + [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, - ACTIONS(2136), 4, + STATE(941), 1, + sym_comment, + ACTIONS(2130), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52098] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2138), 1, + [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, - ACTIONS(2140), 4, + STATE(942), 1, + sym_comment, + ACTIONS(2134), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52111] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2142), 1, + [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, - ACTIONS(2144), 4, + STATE(943), 1, + sym_comment, + ACTIONS(2138), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52124] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2146), 1, + [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, - ACTIONS(2148), 4, + STATE(944), 1, + sym_comment, + ACTIONS(2142), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52137] = 6, + [59820] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 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(1947), 1, + ACTIONS(2010), 1, anon_sym_STAR, - ACTIONS(2150), 1, + ACTIONS(2144), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(848), 1, sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [52156] = 6, - ACTIONS(3), 1, + STATE(945), 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, + STATE(1051), 1, + sym_field_declaration, + [59848] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 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(1947), 1, + ACTIONS(2010), 1, anon_sym_STAR, - ACTIONS(2154), 1, + ACTIONS(2146), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(848), 1, sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [52194] = 3, - ACTIONS(286), 1, + STATE(946), 1, sym_comment, - ACTIONS(2156), 1, + STATE(1051), 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, - ACTIONS(2158), 4, + STATE(947), 1, + sym_comment, + ACTIONS(2150), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52207] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2160), 1, + 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, anon_sym_LF, - ACTIONS(2162), 4, + STATE(949), 1, + sym_comment, + ACTIONS(2156), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52220] = 6, + [59948] = 7, 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, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(2164), 1, + 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, anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(983), 1, - sym_field_declaration, - [52239] = 3, - ACTIONS(286), 1, + STATE(951), 2, sym_comment, - ACTIONS(2166), 1, + 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, anon_sym_LF, - ACTIONS(2168), 4, + STATE(952), 1, + sym_comment, + ACTIONS(2174), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52252] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2170), 1, + [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, - ACTIONS(2172), 4, + STATE(953), 1, + sym_comment, + ACTIONS(2178), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52265] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2174), 1, - anon_sym_DQUOTE, - STATE(980), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2176), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [52279] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2178), 1, + [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, anon_sym_LF, - ACTIONS(2181), 1, + STATE(954), 1, + sym_comment, + ACTIONS(2182), 4, anon_sym_SEMI, - ACTIONS(2184), 1, anon_sym_RBRACE, - STATE(955), 1, - aux_sym_field_declaration_list_repeat1, - [52295] = 5, + 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, sym_comment, - ACTIONS(2186), 1, + ACTIONS(798), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2188), 1, - anon_sym_RBRACE, - ACTIONS(2190), 1, - anon_sym_COLON, - STATE(1075), 1, - aux_sym_literal_value_repeat1, - [52311] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2192), 1, + 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, anon_sym_DQUOTE, - STATE(963), 1, + STATE(956), 1, + sym_comment, + STATE(968), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2194), 2, + ACTIONS(2186), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52325] = 5, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(2196), 1, + 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, anon_sym_LF, - ACTIONS(2198), 1, + ACTIONS(2196), 1, anon_sym_SEMI, - ACTIONS(2200), 1, + ACTIONS(2198), 1, anon_sym_RBRACE, - STATE(955), 1, - aux_sym_field_declaration_list_repeat1, - [52341] = 5, + STATE(958), 1, + sym_comment, + STATE(1008), 1, + aux_sym_interface_type_repeat1, + [60154] = 7, 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, - anon_sym_LPAREN, - ACTIONS(2204), 1, anon_sym_COMMA, + ACTIONS(2204), 1, + anon_sym_RBRACE, + STATE(960), 1, + sym_comment, + STATE(1069), 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_RBRACK, - STATE(1072), 1, - aux_sym_type_arguments_repeat1, - [52357] = 5, - ACTIONS(286), 1, + anon_sym_DQUOTE, + STATE(961), 1, sym_comment, + STATE(971), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2186), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [60225] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, ACTIONS(2208), 1, anon_sym_LF, ACTIONS(2210), 1, anon_sym_SEMI, ACTIONS(2212), 1, anon_sym_RBRACE, - STATE(1001), 1, - aux_sym_interface_type_repeat1, - [52373] = 5, - ACTIONS(3), 1, + STATE(962), 1, sym_comment, - ACTIONS(2190), 1, + STATE(972), 1, + aux_sym_field_declaration_list_repeat1, + [60250] = 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(2214), 1, anon_sym_COMMA, ACTIONS(2216), 1, anon_sym_RBRACE, - STATE(1055), 1, + STATE(963), 1, + sym_comment, + STATE(1115), 1, aux_sym_literal_value_repeat1, - [52389] = 5, + [60275] = 8, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2218), 1, - sym_identifier, + anon_sym_LPAREN, ACTIONS(2220), 1, - anon_sym_RPAREN, - STATE(965), 1, - aux_sym_const_declaration_repeat1, - STATE(1169), 1, - sym_const_spec, - [52405] = 4, - ACTIONS(286), 1, - sym_comment, + 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, - STATE(981), 1, + STATE(965), 1, + sym_comment, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2186), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52419] = 5, - ACTIONS(286), 1, + [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, sym_comment, + ACTIONS(2167), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE, + [60344] = 7, + 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_identifier, + ACTIONS(2229), 1, + anon_sym_RPAREN, + STATE(1184), 1, + sym_const_spec, + STATE(967), 2, + sym_comment, + 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, + 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, anon_sym_LF, - ACTIONS(2228), 1, + STATE(969), 1, + sym_comment, + ACTIONS(2160), 3, anon_sym_SEMI, - ACTIONS(2230), 1, anon_sym_RBRACE, - STATE(960), 1, - aux_sym_interface_type_repeat1, - [52435] = 5, + anon_sym_PIPE, + [60411] = 7, 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(2232), 1, - sym_identifier, + 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_RPAREN, - STATE(965), 1, - aux_sym_const_declaration_repeat1, - STATE(1169), 1, - sym_const_spec, - [52451] = 5, - ACTIONS(286), 1, + anon_sym_DQUOTE, + STATE(971), 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, anon_sym_LF, ACTIONS(2239), 1, anon_sym_SEMI, ACTIONS(2241), 1, anon_sym_RBRACE, - STATE(958), 1, + STATE(972), 1, + sym_comment, + STATE(986), 1, aux_sym_field_declaration_list_repeat1, - [52467] = 5, + [60482] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, 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, - ACTIONS(2247), 1, anon_sym_LF, - ACTIONS(2249), 1, + STATE(973), 1, + sym_comment, + ACTIONS(1764), 3, anon_sym_SEMI, - ACTIONS(2251), 1, anon_sym_RBRACE, - STATE(1001), 1, - aux_sym_interface_type_repeat1, - [52499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(2253), 1, - anon_sym_if, - STATE(892), 2, - sym_block, - sym_if_statement, - [52513] = 5, + anon_sym_PIPE, + [60503] = 8, ACTIONS(3), 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2245), 1, anon_sym_LF, - ACTIONS(2257), 1, + ACTIONS(2247), 1, anon_sym_SEMI, - ACTIONS(2259), 1, + ACTIONS(2249), 1, anon_sym_RBRACE, - STATE(955), 1, - aux_sym_field_declaration_list_repeat1, - [52545] = 4, - ACTIONS(286), 1, + STATE(974), 1, sym_comment, - 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, - 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, + 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, 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, + STATE(982), 1, + aux_sym_const_declaration_repeat1, + STATE(1184), 1, + sym_const_spec, + [60553] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2255), 1, anon_sym_LF, - ACTIONS(2273), 1, + ACTIONS(2258), 1, anon_sym_SEMI, - ACTIONS(2275), 1, + ACTIONS(2261), 1, anon_sym_RBRACE, - STATE(985), 1, + STATE(976), 2, + sym_comment, aux_sym_interface_type_repeat1, - [52619] = 5, + [60576] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2277), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2263), 1, sym_identifier, - ACTIONS(2280), 1, + ACTIONS(2266), 1, anon_sym_RPAREN, - STATE(977), 1, - aux_sym_var_declaration_repeat1, - STATE(1155), 1, + STATE(1171), 1, sym_var_spec, - [52635] = 3, - ACTIONS(286), 1, + STATE(977), 2, sym_comment, - ACTIONS(2282), 1, - anon_sym_LF, - ACTIONS(2284), 3, - anon_sym_SEMI, + 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, anon_sym_RBRACE, - anon_sym_PIPE, - [52647] = 4, + STATE(978), 1, + sym_comment, + STATE(1037), 1, + aux_sym_literal_value_repeat1, + [60624] = 8, 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, - ACTIONS(31), 1, + 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, anon_sym_LBRACE, - ACTIONS(2253), 1, + ACTIONS(2276), 1, anon_sym_if, - STATE(888), 2, + STATE(980), 1, + sym_comment, + STATE(902), 2, sym_block, sym_if_statement, - [52661] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_DQUOTE, + [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, 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, - 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, + 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, sym_comment, - ACTIONS(1938), 1, + 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, anon_sym_LF, - ACTIONS(1940), 3, + ACTIONS(2282), 1, anon_sym_SEMI, + ACTIONS(2284), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [52701] = 5, - ACTIONS(286), 1, + STATE(976), 1, + aux_sym_interface_type_repeat1, + STATE(983), 1, sym_comment, - ACTIONS(2293), 1, + [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, anon_sym_LF, - ACTIONS(2295), 1, + ACTIONS(2288), 1, anon_sym_SEMI, - ACTIONS(2297), 1, + ACTIONS(2290), 1, anon_sym_RBRACE, - STATE(993), 1, + STATE(984), 1, + sym_comment, + STATE(986), 1, aux_sym_field_declaration_list_repeat1, - [52717] = 5, + [60772] = 8, ACTIONS(3), 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_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2292), 1, anon_sym_LF, - ACTIONS(2305), 1, + ACTIONS(2294), 1, anon_sym_SEMI, - ACTIONS(2307), 1, + ACTIONS(2296), 1, anon_sym_RBRACE, - STATE(1001), 1, - aux_sym_interface_type_repeat1, - [52749] = 5, - ACTIONS(3), 1, + STATE(985), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, - ACTIONS(2309), 1, - anon_sym_COMMA, - ACTIONS(2311), 1, + STATE(986), 1, + aux_sym_field_declaration_list_repeat1, + [60797] = 7, + 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, anon_sym_RBRACE, - STATE(1087), 1, - aux_sym_literal_value_repeat1, - [52765] = 3, - ACTIONS(286), 1, + STATE(986), 2, sym_comment, - ACTIONS(2313), 1, + 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, anon_sym_LF, - ACTIONS(2315), 3, + STATE(987), 1, + sym_comment, + ACTIONS(2308), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [52777] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2317), 1, + [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, - ACTIONS(2319), 3, + STATE(988), 1, + sym_comment, + ACTIONS(2312), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [52789] = 5, + [60862] = 7, 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, - 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, + STATE(999), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2186), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [60885] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 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(2323), 1, + ACTIONS(2316), 1, anon_sym_COMMA, - ACTIONS(2325), 1, + ACTIONS(2318), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(990), 1, + sym_comment, + STATE(1066), 1, aux_sym_literal_value_repeat1, - [52821] = 4, + [60910] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 1, - anon_sym_COMMA, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2320), 1, + anon_sym_LF, 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(2332), 1, + 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, anon_sym_LF, - ACTIONS(2334), 1, + ACTIONS(2326), 1, anon_sym_SEMI, - ACTIONS(2336), 1, + ACTIONS(2328), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(983), 1, aux_sym_interface_type_repeat1, - [52851] = 5, - ACTIONS(286), 1, + STATE(992), 1, sym_comment, - ACTIONS(2338), 1, + [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, anon_sym_LF, - ACTIONS(2340), 1, + ACTIONS(2332), 1, anon_sym_SEMI, - ACTIONS(2342), 1, + ACTIONS(2334), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(985), 1, aux_sym_field_declaration_list_repeat1, - [52867] = 5, + STATE(993), 1, + sym_comment, + [60981] = 8, 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, - ACTIONS(2190), 1, + [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, anon_sym_COLON, - ACTIONS(2344), 1, + ACTIONS(2342), 1, anon_sym_COMMA, - ACTIONS(2346), 1, + ACTIONS(2344), 1, anon_sym_RBRACE, - STATE(1049), 1, - aux_sym_literal_value_repeat1, - [52883] = 4, - ACTIONS(286), 1, + STATE(995), 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, + STATE(1038), 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, - ACTIONS(2354), 1, + ACTIONS(2348), 1, anon_sym_SEMI, - ACTIONS(2356), 1, + ACTIONS(2350), 1, anon_sym_RBRACE, - STATE(971), 1, - aux_sym_field_declaration_list_repeat1, - [52913] = 4, - ACTIONS(3), 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, + STATE(974), 1, + aux_sym_interface_type_repeat1, + STATE(996), 1, sym_comment, - ACTIONS(2360), 1, + [61056] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2352), 1, anon_sym_DQUOTE, - STATE(981), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2354), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52941] = 4, - ACTIONS(286), 1, + STATE(997), 2, sym_comment, - ACTIONS(2362), 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, - [52955] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2364), 1, + [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, anon_sym_DQUOTE, STATE(998), 1, + sym_comment, + STATE(1005), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2366), 2, + ACTIONS(2186), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [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, + [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, anon_sym_DQUOTE, - STATE(999), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2378), 2, + STATE(999), 1, + sym_comment, + ACTIONS(2186), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52999] = 5, + [61123] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 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(2380), 1, + ACTIONS(2361), 1, anon_sym_RPAREN, STATE(977), 1, aux_sym_var_declaration_repeat1, - STATE(1155), 1, - sym_var_spec, - [53015] = 3, - ACTIONS(286), 1, + STATE(1000), 1, sym_comment, - ACTIONS(2382), 1, - anon_sym_LF, - ACTIONS(1754), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [53027] = 3, - ACTIONS(286), 1, + STATE(1171), 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, sym_comment, - ACTIONS(1951), 1, - anon_sym_LF, - ACTIONS(1953), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PIPE, - [53039] = 2, + 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, sym_comment, - ACTIONS(814), 4, + ACTIONS(2186), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [61194] = 8, + 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, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [53049] = 4, - ACTIONS(286), 1, + ACTIONS(2367), 1, + anon_sym_LBRACK, + STATE(30), 1, + sym_parameter_list, + STATE(1003), 1, sym_comment, - ACTIONS(2384), 1, + 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, + 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, anon_sym_DQUOTE, - STATE(1008), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2386), 2, + STATE(1005), 1, + sym_comment, + ACTIONS(2186), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [53063] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2388), 1, + [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, anon_sym_DQUOTE, - STATE(981), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + STATE(1006), 1, + sym_comment, + ACTIONS(2186), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [53077] = 4, + [61288] = 6, 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, - 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, + 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, anon_sym_LF, - ACTIONS(2394), 2, + ACTIONS(2380), 1, anon_sym_SEMI, + ACTIONS(2382), 1, anon_sym_RBRACE, - [53101] = 4, - ACTIONS(3), 1, + STATE(976), 1, + aux_sym_interface_type_repeat1, + STATE(1008), 1, sym_comment, - ACTIONS(2218), 1, - sym_identifier, - ACTIONS(2396), 1, - anon_sym_LPAREN, - STATE(910), 1, - sym_const_spec, - [53114] = 4, + [61334] = 7, 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(2299), 1, - sym_identifier, - ACTIONS(2398), 1, - anon_sym_LPAREN, - STATE(917), 1, - sym_var_spec, - [53127] = 4, + ACTIONS(2186), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [61357] = 5, 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(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_LPAREN, - ACTIONS(2400), 1, - sym_identifier, - STATE(667), 1, - sym_parameter_list, - [53140] = 4, + 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(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, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(1992), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_literal_value, - [53153] = 2, + STATE(1110), 1, + aux_sym_expression_list_repeat1, + [61419] = 7, 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, - ACTIONS(2402), 3, + 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, anon_sym_RPAREN, + ACTIONS(2398), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53162] = 4, + STATE(1014), 1, + sym_comment, + STATE(1019), 1, + aux_sym_expression_list_repeat1, + [61463] = 7, 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, - ACTIONS(1739), 1, - anon_sym_DQUOTE, - ACTIONS(2404), 1, - sym_raw_string_literal, - STATE(259), 1, - sym_interpreted_string_literal, - [53175] = 4, + STATE(1027), 1, + aux_sym_argument_list_repeat1, + [61485] = 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(1561), 1, + anon_sym_LBRACE, + STATE(588), 1, + sym_block, + STATE(1016), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_DQUOTE, - ACTIONS(2406), 1, - sym_raw_string_literal, - STATE(286), 1, - sym_interpreted_string_literal, - [53188] = 2, + [61507] = 5, 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(2408), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53197] = 4, + ACTIONS(2376), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + [61525] = 7, 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, - ACTIONS(1094), 1, - anon_sym_LBRACE, - ACTIONS(2410), 1, + [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, anon_sym_COMMA, STATE(1019), 1, + sym_comment, + STATE(1096), 1, aux_sym_expression_list_repeat1, - [53210] = 4, + [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, + 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(2413), 1, + ACTIONS(2406), 2, anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_RBRACK, - STATE(1106), 1, - aux_sym_type_parameter_list_repeat1, - [53223] = 4, + anon_sym_RBRACE, + [61611] = 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(2094), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_literal_value, + STATE(1022), 1, sym_comment, - ACTIONS(1367), 1, + [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, anon_sym_RPAREN, - ACTIONS(2417), 1, + ACTIONS(2410), 1, anon_sym_COMMA, - STATE(1107), 1, + STATE(1023), 1, + sym_comment, + STATE(1078), 1, aux_sym_parameter_list_repeat1, - [53236] = 2, + [61655] = 5, 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(2419), 3, + ACTIONS(2412), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [53245] = 2, + [61673] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2421), 3, - anon_sym_RPAREN, + 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, - anon_sym_RBRACK, - [53254] = 2, + STATE(1025), 2, + sym_comment, + aux_sym_literal_value_repeat1, + [61693] = 5, 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(2423), 3, + ACTIONS(2417), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [53263] = 2, + [61711] = 6, 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, - ACTIONS(2425), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53272] = 4, + aux_sym_argument_list_repeat1, + [61731] = 5, 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(2427), 1, + ACTIONS(2422), 3, anon_sym_RPAREN, - ACTIONS(2429), 1, anon_sym_COMMA, - STATE(1042), 1, - aux_sym_parameter_list_repeat1, - [53285] = 4, + anon_sym_RBRACK, + [61749] = 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(2424), 1, + sym_raw_string_literal, + STATE(1029), 1, sym_comment, - ACTIONS(742), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, + 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, - STATE(505), 1, + ACTIONS(834), 1, + anon_sym_LPAREN, + STATE(314), 1, sym_block, - [53298] = 3, - ACTIONS(286), 1, + 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, + 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, - ACTIONS(2433), 2, + STATE(1033), 1, + sym_comment, + ACTIONS(2435), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53309] = 4, + [61855] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2435), 1, - anon_sym_COMMA, + 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_COLON, - STATE(991), 1, - aux_sym_type_arguments_repeat1, - [53322] = 2, + 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(2439), 3, + ACTIONS(2435), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53331] = 4, + [61897] = 7, ACTIONS(3), 1, - sym_comment, + 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_RPAREN, + 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, + anon_sym_RBRACE, ACTIONS(2443), 1, anon_sym_COMMA, - STATE(1048), 1, - aux_sym_expression_list_repeat1, - [53344] = 4, - ACTIONS(3), 1, + STATE(1025), 1, + aux_sym_literal_value_repeat1, + STATE(1037), 1, sym_comment, + [61941] = 7, + 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, + anon_sym_RPAREN, ACTIONS(2447), 1, + anon_sym_COMMA, + STATE(1039), 1, + sym_comment, + STATE(1096), 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, - STATE(1050), 1, - aux_sym_type_arguments_repeat1, - [53357] = 3, - ACTIONS(286), 1, + ACTIONS(2458), 1, + anon_sym_COMMA, + STATE(1032), 1, + aux_sym_type_parameter_list_repeat1, + STATE(1043), 1, sym_comment, - ACTIONS(2392), 1, + [62071] = 7, + 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, + anon_sym_COMMA, + ACTIONS(2468), 1, + anon_sym_RBRACK, + STATE(1046), 1, + sym_comment, + STATE(1064), 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, - ACTIONS(2394), 2, + STATE(1047), 1, + sym_comment, + ACTIONS(2472), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53368] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2449), 1, + [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, - ACTIONS(2451), 2, + STATE(1048), 1, + sym_comment, + ACTIONS(2476), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53379] = 4, + [62177] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2323), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2316), 1, anon_sym_COMMA, - ACTIONS(2325), 1, + ACTIONS(2318), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1049), 1, + sym_comment, + STATE(1066), 1, aux_sym_literal_value_repeat1, - [53392] = 4, + [62199] = 6, ACTIONS(3), 1, - sym_comment, - 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(2392), 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, - ACTIONS(2394), 2, + STATE(1050), 1, + sym_comment, + ACTIONS(2480), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53416] = 4, + [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, sym_comment, - ACTIONS(1310), 1, + ACTIONS(2304), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [62239] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1252), 1, anon_sym_RPAREN, - ACTIONS(1312), 1, + ACTIONS(1254), 1, anon_sym_COMMA, - STATE(1056), 1, + STATE(1052), 1, + sym_comment, + STATE(1070), 1, aux_sym_argument_list_repeat1, - [53429] = 2, + [62261] = 5, 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(200), 3, + ACTIONS(204), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [53438] = 4, + [62279] = 6, ACTIONS(3), 1, - sym_comment, - 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(2392), 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, - ACTIONS(2394), 2, + STATE(1054), 1, + sym_comment, + ACTIONS(2435), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53462] = 4, + [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, sym_comment, - ACTIONS(1383), 1, + ACTIONS(2486), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [62319] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1423), 1, anon_sym_RPAREN, - ACTIONS(2457), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - STATE(1107), 1, + STATE(1042), 1, aux_sym_parameter_list_repeat1, - [53475] = 4, - ACTIONS(3), 1, + STATE(1056), 1, sym_comment, - ACTIONS(2459), 1, - anon_sym_COMMA, - ACTIONS(2462), 1, - anon_sym_RBRACK, - STATE(1043), 1, - aux_sym_type_parameter_list_repeat1, - [53488] = 4, + [62341] = 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(1057), 1, sym_comment, - ACTIONS(1338), 1, - anon_sym_RPAREN, - ACTIONS(2464), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_argument_list_repeat1, - [53501] = 4, + 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, + anon_sym_COMMA, + ACTIONS(1627), 1, + anon_sym_LBRACE, + STATE(1058), 1, sym_comment, - ACTIONS(486), 1, + 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, anon_sym_RPAREN, - ACTIONS(2467), 1, + ACTIONS(2490), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1027), 1, aux_sym_argument_list_repeat1, - [53514] = 4, + STATE(1059), 1, + sym_comment, + [62405] = 5, 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(2469), 1, + ACTIONS(2492), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [62423] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2342), 1, anon_sym_COMMA, - ACTIONS(2472), 1, + ACTIONS(2344), 1, anon_sym_RBRACE, - STATE(1046), 1, + STATE(1038), 1, aux_sym_literal_value_repeat1, - [53527] = 4, - ACTIONS(3), 1, + STATE(1061), 1, sym_comment, - ACTIONS(466), 1, - anon_sym_RPAREN, - ACTIONS(2474), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_argument_list_repeat1, - [53540] = 4, + [62445] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(574), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(582), 1, anon_sym_RPAREN, - ACTIONS(2476), 1, + ACTIONS(2494), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1062), 1, + sym_comment, + STATE(1096), 1, aux_sym_expression_list_repeat1, - [53553] = 4, + [62467] = 6, 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(404), 1, + ACTIONS(2498), 2, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(2478), 1, - anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [53566] = 4, + [62487] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1575), 1, anon_sym_RBRACK, - ACTIONS(2480), 1, + ACTIONS(2500), 1, anon_sym_COMMA, - STATE(991), 1, + STATE(1007), 1, aux_sym_type_arguments_repeat1, - [53579] = 4, + STATE(1064), 1, + sym_comment, + [62509] = 5, 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(588), 1, + ACTIONS(2386), 3, anon_sym_RPAREN, - ACTIONS(2482), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53592] = 4, + anon_sym_RBRACK, + [62527] = 7, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(422), 1, anon_sym_RBRACE, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_COMMA, - STATE(1046), 1, + STATE(1025), 1, aux_sym_literal_value_repeat1, - [53605] = 3, - ACTIONS(3), 1, + STATE(1066), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, - ACTIONS(2472), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53616] = 4, + [62549] = 6, 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(1246), 1, - anon_sym_RPAREN, - ACTIONS(1248), 1, - anon_sym_COMMA, - STATE(1047), 1, - aux_sym_argument_list_repeat1, - [53629] = 4, + ACTIONS(2506), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [62569] = 6, 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(402), 1, + ACTIONS(2510), 2, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(2486), 1, + [62589] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(408), 1, + anon_sym_RBRACE, + ACTIONS(2512), 1, anon_sym_COMMA, - STATE(1046), 1, + STATE(1025), 1, aux_sym_literal_value_repeat1, - [53642] = 4, - ACTIONS(3), 1, + STATE(1069), 1, sym_comment, - ACTIONS(484), 1, + [62611] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(476), 1, anon_sym_RPAREN, - ACTIONS(2488), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1027), 1, aux_sym_argument_list_repeat1, - [53655] = 4, - ACTIONS(3), 1, + STATE(1070), 1, sym_comment, - ACTIONS(1569), 1, - anon_sym_RBRACK, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(991), 1, - aux_sym_type_arguments_repeat1, - [53668] = 2, + [62633] = 6, 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(2330), 3, + ACTIONS(2422), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_COLON, - [53677] = 4, + [62653] = 6, 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(2344), 1, - anon_sym_COMMA, - ACTIONS(2346), 1, + ACTIONS(2518), 2, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(1049), 1, - aux_sym_literal_value_repeat1, - [53690] = 4, + [62673] = 5, 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(520), 1, - anon_sym_RPAREN, - ACTIONS(2492), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53703] = 4, + ACTIONS(2520), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [62691] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2435), 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, anon_sym_COMMA, - ACTIONS(2494), 1, - anon_sym_COLON, - STATE(1029), 1, - aux_sym_type_arguments_repeat1, - [53716] = 4, - ACTIONS(3), 1, + STATE(1025), 1, + aux_sym_literal_value_repeat1, + STATE(1074), 1, sym_comment, - ACTIONS(1306), 1, - anon_sym_RPAREN, - ACTIONS(1308), 1, - anon_sym_COMMA, - STATE(1110), 1, - aux_sym_argument_list_repeat1, - [53729] = 4, + [62713] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - anon_sym_RPAREN, - ACTIONS(2498), 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, - STATE(1051), 1, - aux_sym_expression_list_repeat1, - [53742] = 4, - ACTIONS(3), 1, + ACTIONS(2270), 1, + anon_sym_RBRACE, + STATE(1037), 1, + aux_sym_literal_value_repeat1, + STATE(1075), 1, sym_comment, - ACTIONS(1369), 1, - anon_sym_RPAREN, - ACTIONS(2500), 1, - anon_sym_COMMA, - STATE(1107), 1, - aux_sym_parameter_list_repeat1, - [53755] = 4, + [62735] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1094), 1, - anon_sym_RPAREN, - ACTIONS(2502), 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, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53768] = 4, - ACTIONS(3), 1, + STATE(1007), 1, + aux_sym_type_arguments_repeat1, + STATE(1076), 1, sym_comment, - ACTIONS(526), 1, - anon_sym_RPAREN, - ACTIONS(2505), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53781] = 4, + [62757] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2186), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2526), 1, anon_sym_COMMA, - ACTIONS(2188), 1, - anon_sym_RBRACE, - STATE(1075), 1, - aux_sym_literal_value_repeat1, - [53794] = 4, - ACTIONS(3), 1, + ACTIONS(2528), 1, + anon_sym_RBRACK, + STATE(1043), 1, + aux_sym_type_parameter_list_repeat1, + STATE(1077), 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, + [62779] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 3, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1435), 1, + anon_sym_RPAREN, + ACTIONS(2530), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - [53816] = 4, - ACTIONS(3), 1, + STATE(1042), 1, + aux_sym_parameter_list_repeat1, + STATE(1078), 1, sym_comment, - ACTIONS(742), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LBRACE, - STATE(569), 1, - sym_block, - [53829] = 4, + [62801] = 5, 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(2204), 1, + ACTIONS(2532), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2206), 1, anon_sym_RBRACK, - STATE(1072), 1, - aux_sym_type_arguments_repeat1, - [53842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_RBRACK, - ACTIONS(2507), 1, + [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, + anon_sym_RPAREN, + ACTIONS(2536), 1, anon_sym_COMMA, - STATE(991), 1, - aux_sym_type_arguments_repeat1, - [53855] = 4, - ACTIONS(3), 1, + STATE(1039), 1, + aux_sym_expression_list_repeat1, + STATE(1080), 1, sym_comment, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(2152), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_literal_value, - [53868] = 4, + [62841] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 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(1178), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - STATE(577), 1, - sym_literal_value, - [53881] = 4, - ACTIONS(3), 1, + STATE(406), 1, + sym_block, + STATE(1081), 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, + [62863] = 7, 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(2538), 1, + anon_sym_COLON, + STATE(1007), 1, + aux_sym_type_arguments_repeat1, + STATE(1082), 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, - ACTIONS(2511), 1, + [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, anon_sym_LF, - ACTIONS(2374), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [53918] = 3, - ACTIONS(286), 1, + STATE(1083), 1, sym_comment, - ACTIONS(2513), 1, - anon_sym_LF, - ACTIONS(2515), 2, + ACTIONS(2261), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53929] = 4, + [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, sym_comment, - ACTIONS(2517), 1, + ACTIONS(2542), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [62923] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(558), 1, anon_sym_RPAREN, - ACTIONS(2519), 1, + ACTIONS(2544), 1, anon_sym_COMMA, - STATE(1066), 1, + STATE(1085), 1, + sym_comment, + STATE(1096), 1, aux_sym_expression_list_repeat1, - [53942] = 4, + [62945] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2521), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1274), 1, anon_sym_RPAREN, - ACTIONS(2523), 1, + ACTIONS(1276), 1, anon_sym_COMMA, - STATE(1021), 1, - aux_sym_parameter_list_repeat1, - [53955] = 4, - ACTIONS(3), 1, + STATE(1086), 1, sym_comment, - ACTIONS(2525), 1, - anon_sym_COMMA, - ACTIONS(2527), 1, - anon_sym_RBRACK, - STATE(1057), 1, - aux_sym_type_arguments_repeat1, - [53968] = 4, + STATE(1094), 1, + aux_sym_argument_list_repeat1, + [62967] = 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(1978), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_literal_value, + STATE(1087), 1, sym_comment, - ACTIONS(2529), 1, - anon_sym_RPAREN, - ACTIONS(2531), 1, + [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, anon_sym_COMMA, - STATE(1060), 1, + STATE(1088), 2, + sym_comment, aux_sym_expression_list_repeat1, - [53981] = 2, + [63009] = 7, 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, - ACTIONS(2533), 3, + [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, anon_sym_RPAREN, + ACTIONS(2551), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53990] = 2, + STATE(1042), 1, + aux_sym_parameter_list_repeat1, + STATE(1090), 1, + sym_comment, + [63053] = 5, 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(2535), 3, + ACTIONS(2553), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [53999] = 4, + [63071] = 5, 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(31), 1, - anon_sym_LBRACE, - ACTIONS(742), 1, - anon_sym_LPAREN, - STATE(332), 1, - sym_block, - [54012] = 4, + ACTIONS(2555), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [63089] = 7, 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, - ACTIONS(446), 1, + [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, anon_sym_RPAREN, - ACTIONS(2537), 1, + ACTIONS(2559), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1027), 1, aux_sym_argument_list_repeat1, - [54025] = 4, + STATE(1094), 1, + sym_comment, + [63133] = 5, 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(410), 1, + ACTIONS(2561), 3, anon_sym_RBRACE, - ACTIONS(2539), 1, - anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [54038] = 4, + 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, + anon_sym_COMMA, + STATE(1096), 2, sym_comment, - ACTIONS(742), 1, + aux_sym_expression_list_repeat1, + [63171] = 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(1565), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - STATE(374), 1, - sym_block, - [54051] = 4, + STATE(399), 1, + sym_literal_value, + STATE(1097), 1, + sym_comment, + [63193] = 5, 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(2541), 1, + 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, anon_sym_RPAREN, - ACTIONS(2543), 1, + ACTIONS(2570), 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, - ACTIONS(2545), 1, + [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, anon_sym_LF, - ACTIONS(2184), 2, + STATE(1100), 1, + sym_comment, + ACTIONS(2574), 2, anon_sym_SEMI, anon_sym_RBRACE, - [54075] = 4, + [63253] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1282), 1, anon_sym_RPAREN, - ACTIONS(2549), 1, - anon_sym_COMMA, - STATE(1064), 1, - aux_sym_parameter_list_repeat1, - [54088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2243), 1, + ACTIONS(1284), 1, anon_sym_COMMA, - ACTIONS(2245), 1, - anon_sym_RBRACE, + STATE(1015), 1, + aux_sym_argument_list_repeat1, STATE(1101), 1, - aux_sym_literal_value_repeat1, - [54101] = 4, + sym_comment, + [63275] = 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(1553), 1, + anon_sym_LBRACE, + STATE(363), 1, + sym_block, + STATE(1102), 1, sym_comment, - ACTIONS(560), 1, + [63297] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2576), 1, anon_sym_RPAREN, - ACTIONS(2551), 1, + ACTIONS(2578), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1103), 1, + sym_comment, + STATE(1113), 1, aux_sym_expression_list_repeat1, - [54114] = 4, + [63319] = 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(1964), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_literal_value, + STATE(1104), 1, sym_comment, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(2553), 1, - sym_raw_string_literal, - STATE(1132), 1, - sym_interpreted_string_literal, - [54127] = 4, + [63341] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1286), 1, anon_sym_RPAREN, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_COMMA, - STATE(1105), 1, + STATE(1059), 1, aux_sym_argument_list_repeat1, - [54140] = 4, - ACTIONS(3), 1, + STATE(1105), 1, sym_comment, - ACTIONS(1320), 1, - anon_sym_RPAREN, - ACTIONS(1322), 1, + [63363] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2214), 1, anon_sym_COMMA, - STATE(1086), 1, - aux_sym_argument_list_repeat1, - [54153] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2555), 1, - anon_sym_LF, - ACTIONS(2557), 2, - anon_sym_SEMI, + ACTIONS(2216), 1, anon_sym_RBRACE, - [54164] = 3, - ACTIONS(286), 1, + STATE(1106), 1, sym_comment, - ACTIONS(2559), 1, - anon_sym_LF, - ACTIONS(2561), 2, - anon_sym_SEMI, + 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, + sym_comment, + ACTIONS(2580), 3, anon_sym_RBRACE, - [54175] = 4, + anon_sym_case, + anon_sym_default, + [63403] = 7, 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, - ACTIONS(522), 1, + [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, anon_sym_RPAREN, - ACTIONS(2563), 1, + ACTIONS(1320), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [54188] = 4, - ACTIONS(3), 1, + STATE(1109), 1, sym_comment, - ACTIONS(1336), 1, + STATE(1119), 1, + aux_sym_argument_list_repeat1, + [63447] = 7, + 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, anon_sym_COMMA, - ACTIONS(1621), 1, - anon_sym_LBRACE, - STATE(1019), 1, + STATE(1096), 1, aux_sym_expression_list_repeat1, - [54201] = 4, - ACTIONS(3), 1, + STATE(1110), 1, sym_comment, - ACTIONS(418), 1, - anon_sym_RBRACE, - ACTIONS(2565), 1, - anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [54214] = 4, + [63469] = 7, 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, - ACTIONS(2309), 1, + [63491] = 7, + 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(2311), 1, + ACTIONS(2190), 1, anon_sym_RBRACE, - STATE(1087), 1, + STATE(1074), 1, aux_sym_literal_value_repeat1, - [54227] = 4, - ACTIONS(3), 1, + STATE(1112), 1, sym_comment, - ACTIONS(2567), 1, + [63513] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(528), 1, anon_sym_RPAREN, - ACTIONS(2569), 1, + ACTIONS(2586), 1, anon_sym_COMMA, - STATE(1093), 1, + STATE(1096), 1, aux_sym_expression_list_repeat1, - [54240] = 4, - ACTIONS(3), 1, + STATE(1113), 1, sym_comment, - ACTIONS(742), 1, - anon_sym_LPAREN, - ACTIONS(1567), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_block, - [54253] = 4, + [63535] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(500), 1, - anon_sym_RPAREN, - ACTIONS(2571), 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, - STATE(1044), 1, - aux_sym_argument_list_repeat1, - [54266] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, + ACTIONS(2590), 1, anon_sym_RBRACK, - ACTIONS(2573), 1, - anon_sym_COMMA, - STATE(1043), 1, - aux_sym_type_parameter_list_repeat1, - [54279] = 4, - ACTIONS(3), 1, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, + STATE(1114), 1, sym_comment, - ACTIONS(2575), 1, - anon_sym_RPAREN, - ACTIONS(2577), 1, + [63557] = 7, + 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(1107), 1, - aux_sym_parameter_list_repeat1, - [54292] = 4, + STATE(1025), 1, + aux_sym_literal_value_repeat1, + STATE(1115), 1, + sym_comment, + [63579] = 7, 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, - ACTIONS(654), 1, + [63601] = 7, + 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, - ACTIONS(1076), 1, - anon_sym_LBRACE, - STATE(393), 1, - sym_literal_value, - [54305] = 3, - ACTIONS(286), 1, + STATE(904), 1, + sym_const_spec, + STATE(1117), 1, sym_comment, - ACTIONS(2580), 1, - anon_sym_LF, - ACTIONS(2582), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [54316] = 4, + [63623] = 5, 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(472), 1, + ACTIONS(1342), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + [63641] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(460), 1, anon_sym_RPAREN, - ACTIONS(2584), 1, + ACTIONS(2598), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1027), 1, aux_sym_argument_list_repeat1, - [54329] = 3, - ACTIONS(286), 1, + STATE(1119), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_LF, - ACTIONS(2588), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [54340] = 3, + [63663] = 7, 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, - ACTIONS(2202), 1, - anon_sym_LPAREN, - ACTIONS(2533), 2, + [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, anon_sym_COMMA, + ACTIONS(2222), 1, anon_sym_RBRACK, - [54351] = 2, + STATE(1018), 1, + aux_sym_type_arguments_repeat1, + STATE(1121), 1, + sym_comment, + [63707] = 5, 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(2402), 3, + ACTIONS(2604), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [54360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 1, - anon_sym_struct, - ACTIONS(2590), 1, - sym_identifier, - STATE(988), 1, - sym_struct_type, - [54373] = 2, + [63724] = 5, 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(2592), 2, + ACTIONS(2453), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [54381] = 3, + [63741] = 6, 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, - ACTIONS(1970), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_literal_value, - [54391] = 3, + [63760] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2596), 1, + ACTIONS(2608), 1, anon_sym_LPAREN, - [54401] = 3, - ACTIONS(3), 1, + STATE(1125), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_LPAREN, - STATE(475), 1, - sym_parameter_list, - [54411] = 3, + [63779] = 5, 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(1076), 1, - anon_sym_LBRACE, - STATE(393), 1, - sym_literal_value, - [54421] = 3, + ACTIONS(2229), 2, + anon_sym_RPAREN, + sym_identifier, + [63796] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 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(504), 1, - sym_parameter_list, - [54431] = 3, - ACTIONS(3), 1, + STATE(349), 1, + sym_argument_list, + STATE(1127), 1, sym_comment, - ACTIONS(2032), 1, - anon_sym_struct, - STATE(988), 1, - sym_struct_type, - [54441] = 2, + [63815] = 5, 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(2156), 2, + ACTIONS(1940), 2, anon_sym_SEMI, anon_sym_LBRACE, - [54449] = 2, + [63832] = 5, 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(2575), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54457] = 3, + ACTIONS(1932), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [63849] = 6, 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, - ACTIONS(2600), 1, - anon_sym_LBRACE, - STATE(836), 1, - sym_field_declaration_list, - [54467] = 3, + [63868] = 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, + anon_sym_LPAREN, + STATE(664), 1, + sym_parameter_list, + STATE(1131), 1, sym_comment, - ACTIONS(2602), 1, + [63887] = 6, + 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_identifier, - ACTIONS(2604), 1, + ACTIONS(2610), 1, anon_sym_LPAREN, - [54477] = 3, + STATE(1132), 1, + sym_comment, + [63906] = 6, 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, - ACTIONS(1278), 1, - anon_sym_LPAREN, - STATE(661), 1, - sym_parameter_list, - [54487] = 3, + [63925] = 6, 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, - ACTIONS(1080), 1, - anon_sym_LPAREN, - STATE(413), 1, - sym_argument_list, - [54497] = 2, + [63944] = 6, 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, - ACTIONS(2606), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54505] = 3, + [63963] = 5, 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(1104), 1, + 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, anon_sym_LPAREN, - STATE(447), 1, - sym_argument_list, - [54515] = 2, + STATE(659), 1, + sym_parameter_list, + STATE(1137), 1, + sym_comment, + [63999] = 5, 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(2170), 2, + ACTIONS(2154), 2, anon_sym_SEMI, anon_sym_LBRACE, - [54523] = 3, - ACTIONS(286), 1, + [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, sym_comment, - ACTIONS(852), 1, + [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, anon_sym_LF, - ACTIONS(854), 1, + ACTIONS(913), 1, anon_sym_SEMI, - [54533] = 3, - ACTIONS(286), 1, + STATE(1140), 1, sym_comment, - ACTIONS(730), 1, - anon_sym_LF, - ACTIONS(732), 1, - anon_sym_SEMI, - [54543] = 3, + [64054] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 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(670), 1, - sym_parameter_list, - [54553] = 2, - ACTIONS(3), 1, + STATE(421), 1, + sym_argument_list, + STATE(1141), 1, sym_comment, - ACTIONS(2012), 2, - anon_sym_SEMI, + [64073] = 6, + 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, - [54561] = 2, + STATE(373), 1, + sym_literal_value, + STATE(1142), 1, + sym_comment, + [64092] = 5, 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(1916), 2, + ACTIONS(2266), 2, anon_sym_RPAREN, sym_identifier, - [54569] = 2, + [64109] = 5, 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(2006), 2, + ACTIONS(712), 2, anon_sym_SEMI, anon_sym_LBRACE, - [54577] = 3, + [64126] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 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(338), 1, + STATE(336), 1, sym_literal_value, - [54587] = 3, - ACTIONS(3), 1, + STATE(1145), 1, sym_comment, - ACTIONS(306), 1, + [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, anon_sym_LBRACE, - STATE(438), 1, - sym_literal_value, - [54597] = 3, - ACTIONS(286), 1, + STATE(274), 1, + sym_field_declaration_list, + STATE(1146), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LF, - ACTIONS(2610), 1, - anon_sym_SEMI, - [54607] = 3, - ACTIONS(286), 1, + [64164] = 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, + 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, sym_comment, - ACTIONS(685), 1, + 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, anon_sym_LF, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_SEMI, - [54617] = 3, + 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, sym_comment, - ACTIONS(1278), 1, + ACTIONS(2622), 2, + sym_raw_string_literal, + anon_sym_DQUOTE, + [64236] = 6, + 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(669), 1, + 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, + anon_sym_LPAREN, + STATE(662), 1, sym_parameter_list, - [54627] = 3, - ACTIONS(286), 1, + STATE(1152), 1, sym_comment, - ACTIONS(782), 1, - anon_sym_LF, - ACTIONS(784), 1, - anon_sym_SEMI, - [54637] = 2, + [64274] = 6, 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, - ACTIONS(818), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [54645] = 2, + [64293] = 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, + anon_sym_LPAREN, + STATE(574), 1, + sym_parameter_list, + STATE(1154), 1, sym_comment, - ACTIONS(2614), 2, - sym_raw_string_literal, - anon_sym_DQUOTE, - [54653] = 3, + [64312] = 6, 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, - ACTIONS(2616), 1, + [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, anon_sym_LBRACE, - STATE(790), 1, + STATE(787), 1, sym_field_declaration_list, - [54663] = 3, - ACTIONS(3), 1, + STATE(1156), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - STATE(377), 1, - sym_argument_list, - [54673] = 3, + [64350] = 6, 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, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN, - [54683] = 3, + [64369] = 5, 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(1278), 1, - anon_sym_LPAREN, - STATE(581), 1, - sym_parameter_list, - [54693] = 3, + 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, + sym_identifier, + STATE(862), 1, + sym_qualified_type, + STATE(1159), 1, sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(27), 1, - sym_parameter_list, - [54703] = 3, + [64405] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2634), 1, + anon_sym_LPAREN, + STATE(494), 1, + sym_argument_list, + STATE(1160), 1, sym_comment, - ACTIONS(2618), 1, + [64424] = 6, + 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_identifier, - ACTIONS(2622), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - [54713] = 3, + STATE(1161), 1, + sym_comment, + [64443] = 5, 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(2202), 1, - anon_sym_LPAREN, - ACTIONS(2624), 1, + ACTIONS(1365), 2, anon_sym_RPAREN, - [54723] = 3, + anon_sym_COMMA, + [64460] = 6, 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, - ACTIONS(1278), 1, - anon_sym_LPAREN, - STATE(663), 1, - sym_parameter_list, - [54733] = 3, + [64479] = 5, 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(1809), 1, + 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, anon_sym_LPAREN, - STATE(38), 1, + STATE(477), 1, sym_parameter_list, - [54743] = 3, - ACTIONS(3), 1, + STATE(1165), 1, sym_comment, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(2628), 1, + [64515] = 6, + 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, - [54753] = 3, - ACTIONS(286), 1, + STATE(28), 1, + sym_parameter_list, + STATE(1166), 1, sym_comment, - ACTIONS(2630), 1, - anon_sym_LF, - ACTIONS(2632), 1, - anon_sym_SEMI, - [54763] = 3, + [64534] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 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(502), 1, - sym_argument_list, - [54773] = 3, - ACTIONS(3), 1, + STATE(522), 1, + sym_parameter_list, + STATE(1167), 1, sym_comment, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2636), 1, - anon_sym_LPAREN, - [54783] = 3, + [64553] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 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(623), 1, + STATE(669), 1, sym_parameter_list, - [54793] = 3, - ACTIONS(3), 1, + STATE(1168), 1, sym_comment, - ACTIONS(2152), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_literal_value, - [54803] = 3, + [64572] = 5, 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(1178), 1, + 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, anon_sym_LBRACE, - STATE(577), 1, + STATE(537), 1, sym_literal_value, - [54813] = 3, - ACTIONS(3), 1, + STATE(1170), 1, sym_comment, - ACTIONS(1278), 1, - anon_sym_LPAREN, - STATE(659), 1, - sym_parameter_list, - [54823] = 3, + [64608] = 6, 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, - ACTIONS(2638), 1, - anon_sym_LBRACE, - STATE(254), 1, - sym_field_declaration_list, - [54833] = 2, + [64627] = 5, 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(2640), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54841] = 3, + 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, + anon_sym_LPAREN, + STATE(592), 1, + sym_parameter_list, + STATE(1173), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_block, - [54851] = 3, + [64663] = 6, ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1226), 1, + anon_sym_LBRACE, + STATE(566), 1, + sym_literal_value, + STATE(1174), 1, sym_comment, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2642), 1, - anon_sym_LPAREN, - [54861] = 3, + [64682] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 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(2646), 1, + ACTIONS(2654), 1, anon_sym_LPAREN, - [54871] = 3, - ACTIONS(3), 1, + STATE(1175), 1, sym_comment, - ACTIONS(2594), 1, + [64701] = 6, + 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(2648), 1, + ACTIONS(2656), 1, anon_sym_LPAREN, - [54881] = 3, - ACTIONS(3), 1, + STATE(1176), 1, sym_comment, - ACTIONS(1182), 1, + [64720] = 6, + 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, - STATE(571), 1, + STATE(447), 1, sym_argument_list, - [54891] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2650), 1, - anon_sym_LF, - ACTIONS(2652), 1, - anon_sym_SEMI, - [54901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2654), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54917] = 2, - ACTIONS(3), 1, + STATE(1177), 1, sym_comment, - ACTIONS(1338), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54925] = 2, + [64739] = 6, 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, - ACTIONS(2656), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [54933] = 3, + [64758] = 6, 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, - ACTIONS(2658), 1, - sym_identifier, - STATE(878), 1, - sym_qualified_type, - [54943] = 3, + [64777] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2660), 1, sym_identifier, ACTIONS(2662), 1, anon_sym_LPAREN, - [54953] = 2, - ACTIONS(3), 1, + STATE(1180), 1, sym_comment, - ACTIONS(2235), 2, - anon_sym_RPAREN, - sym_identifier, - [54961] = 2, + [64796] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2472), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54969] = 3, - ACTIONS(286), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2664), 1, - anon_sym_LF, + sym_identifier, ACTIONS(2666), 1, - anon_sym_SEMI, - [54979] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN, + STATE(1181), 1, sym_comment, - ACTIONS(2280), 2, - anon_sym_RPAREN, - sym_identifier, - [54987] = 3, + [64815] = 6, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2668), 1, anon_sym_LPAREN, - STATE(316), 1, + STATE(334), 1, sym_argument_list, - [54997] = 2, - ACTIONS(3), 1, + STATE(1183), 1, sym_comment, - ACTIONS(2670), 1, - sym_identifier, - [55004] = 2, + [64853] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2670), 1, + anon_sym_LF, ACTIONS(2672), 1, - sym_identifier, - [55011] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + STATE(1184), 1, sym_comment, - ACTIONS(2674), 1, - anon_sym_RPAREN, - [55018] = 2, + [64872] = 5, 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(2676), 1, + ACTIONS(2674), 2, anon_sym_RPAREN, - [55025] = 2, + anon_sym_COMMA, + [64889] = 6, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(290), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(292), 1, + anon_sym_SLASH_STAR, + ACTIONS(2676), 1, + anon_sym_LF, ACTIONS(2678), 1, - anon_sym_EQ, - [55032] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + STATE(1186), 1, sym_comment, - ACTIONS(2680), 1, - anon_sym_RPAREN, - [55039] = 2, + [64908] = 5, 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(2682), 1, + ACTIONS(2680), 2, anon_sym_RPAREN, - [55046] = 2, + anon_sym_COMMA, + [64925] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2682), 1, sym_identifier, - [55053] = 2, + STATE(1188), 1, + sym_comment, + [64941] = 5, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2686), 1, anon_sym_RPAREN, - [55060] = 2, + STATE(1190), 1, + sym_comment, + [64973] = 5, 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, - [55067] = 2, - ACTIONS(3), 1, + STATE(1192), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_RBRACE, - [55074] = 2, + [65005] = 5, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2690), 1, - anon_sym_COLON_EQ, - [55081] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(1193), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - [55088] = 2, + [65021] = 5, 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, - ACTIONS(2694), 1, - anon_sym_SEMI, - [55095] = 2, + [65037] = 5, 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, - ACTIONS(2696), 1, - anon_sym_COLON, - [55102] = 2, + [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, + anon_sym_LBRACE, + STATE(1196), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_RBRACE, - [55109] = 2, + [65069] = 5, 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, - ACTIONS(2698), 1, - anon_sym_SEMI, - [55116] = 2, + [65085] = 5, 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, - ACTIONS(2700), 1, - anon_sym_COLON, - [55123] = 2, + [65101] = 5, 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(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(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, - [55130] = 2, + STATE(1201), 1, + sym_comment, + [65149] = 5, 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, - ACTIONS(2704), 1, - anon_sym_RBRACE, - [55137] = 2, + [65165] = 5, 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, - ACTIONS(2706), 1, - sym_identifier, - [55144] = 2, + [65181] = 5, 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, - ACTIONS(2708), 1, - anon_sym_SEMI, - [55151] = 2, + [65197] = 5, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2710), 1, sym_identifier, - [55158] = 2, - ACTIONS(3), 1, + STATE(1206), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_RBRACE, - [55165] = 2, + [65229] = 5, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2712), 1, anon_sym_LBRACE, - [55172] = 2, - ACTIONS(3), 1, + STATE(1207), 1, sym_comment, - ACTIONS(2714), 1, - anon_sym_RBRACK, - [55179] = 2, + [65245] = 5, 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, - ACTIONS(2716), 1, - anon_sym_LBRACE, - [55186] = 2, + [65261] = 5, 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, - ACTIONS(2718), 1, - anon_sym_RBRACE, - [55193] = 2, + [65277] = 5, 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, - ACTIONS(2720), 1, - anon_sym_LBRACE, - [55200] = 2, + [65293] = 5, 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, - ACTIONS(2722), 1, - anon_sym_chan, - [55207] = 2, + [65309] = 5, 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, - ACTIONS(2724), 1, - anon_sym_LBRACE, - [55214] = 2, + [65325] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2724), 1, anon_sym_RPAREN, - [55221] = 2, - ACTIONS(3), 1, + STATE(1213), 1, sym_comment, + [65341] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2726), 1, anon_sym_RBRACE, - [55228] = 2, - ACTIONS(3), 1, + STATE(1214), 1, sym_comment, - ACTIONS(2728), 1, - anon_sym_chan, - [55235] = 2, + [65357] = 5, 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, - ACTIONS(2730), 1, - anon_sym_RPAREN, - [55242] = 2, + [65373] = 5, 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, - ACTIONS(2732), 1, - anon_sym_LBRACE, - [55249] = 2, + [65389] = 5, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2734), 1, anon_sym_RPAREN, - [55256] = 2, - ACTIONS(3), 1, + STATE(1218), 1, sym_comment, - ACTIONS(2736), 1, - anon_sym_EQ, - [55263] = 2, + [65421] = 5, 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, - ACTIONS(2738), 1, - anon_sym_chan, - [55270] = 2, + [65437] = 5, 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, - ACTIONS(2740), 1, - anon_sym_RBRACK, - [55277] = 2, + [65453] = 5, 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, - ACTIONS(2742), 1, - anon_sym_RBRACK, - [55284] = 2, + [65469] = 5, 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(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_LBRACE, - [55291] = 2, + anon_sym_RBRACE, + STATE(1223), 1, + sym_comment, + [65501] = 5, 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, - ACTIONS(2746), 1, - anon_sym_LBRACE, - [55298] = 2, + [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, - ACTIONS(2748), 1, - anon_sym_RPAREN, - [55305] = 2, + [65533] = 5, 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, - ACTIONS(2750), 1, - sym_identifier, - [55312] = 2, + [65549] = 5, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2752), 1, anon_sym_LBRACE, - [55319] = 2, - ACTIONS(3), 1, + STATE(1228), 1, sym_comment, - ACTIONS(2754), 1, - anon_sym_RBRACE, - [55326] = 2, + [65581] = 5, 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, - ACTIONS(2756), 1, - anon_sym_RPAREN, - [55333] = 2, + [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, + anon_sym_RBRACE, + STATE(1230), 1, sym_comment, - ACTIONS(2758), 1, - anon_sym_LBRACE, - [55340] = 2, + [65613] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2521), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2758), 1, anon_sym_RPAREN, - [55347] = 2, - ACTIONS(3), 1, + STATE(1231), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_RBRACE, - [55354] = 2, + [65629] = 5, ACTIONS(3), 1, - sym_comment, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2760), 1, - anon_sym_LBRACE, - [55361] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(1232), 1, sym_comment, - ACTIONS(2762), 1, - sym_identifier, - [55368] = 2, + [65645] = 5, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2764), 1, anon_sym_RBRACK, - [55375] = 2, - ACTIONS(3), 1, + STATE(1234), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_RPAREN, - [55382] = 2, + [65677] = 5, 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, - ACTIONS(2768), 1, - anon_sym_RPAREN, - [55389] = 2, + [65693] = 5, 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, - ACTIONS(2770), 1, - anon_sym_RPAREN, - [55396] = 2, + [65709] = 5, 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, - ACTIONS(2245), 1, - anon_sym_RBRACE, - [55403] = 2, + [65725] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2772), 1, anon_sym_RPAREN, - [55410] = 2, - ACTIONS(3), 1, + STATE(1238), 1, sym_comment, - ACTIONS(2772), 1, - anon_sym_COLON, - [55417] = 2, + [65741] = 5, 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, - ACTIONS(2774), 1, - anon_sym_chan, - [55424] = 2, + [65757] = 5, 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(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_LPAREN, - [55431] = 2, + anon_sym_RBRACK, + STATE(1241), 1, + sym_comment, + [65789] = 5, 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, - ACTIONS(2778), 1, - sym_identifier, - [55438] = 2, + [65805] = 5, 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, - ACTIONS(2780), 1, - ts_builtin_sym_end, - [55445] = 2, + [65821] = 5, 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, - ACTIONS(2782), 1, - anon_sym_RPAREN, - [55452] = 2, + [65837] = 5, 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(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_RPAREN, - [55459] = 2, + 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, sym_comment, + [65885] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2786), 1, anon_sym_LBRACE, - [55466] = 2, - ACTIONS(3), 1, + STATE(1248), 1, sym_comment, - ACTIONS(2788), 1, - sym_identifier, - [55473] = 2, + [65901] = 5, 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(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2790), 1, anon_sym_RPAREN, - [55480] = 2, - ACTIONS(3), 1, + STATE(1250), 1, sym_comment, + [65933] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH2, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, ACTIONS(2792), 1, anon_sym_RPAREN, - [55487] = 2, + 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, - ACTIONS(2311), 1, - anon_sym_RBRACE, - [55494] = 2, + [65965] = 5, 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, - ACTIONS(2794), 1, - anon_sym_LBRACK, - [55501] = 2, + [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, - ACTIONS(2796), 1, + [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, + anon_sym_RBRACE, + STATE(1255), 1, + sym_comment, + [66013] = 5, + 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, - [55508] = 2, + 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, - ACTIONS(2798), 1, - anon_sym_LBRACE, - [55515] = 2, + [66045] = 5, 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, - ACTIONS(2800), 1, - anon_sym_RBRACE, - [55522] = 2, + [66061] = 5, 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, - ACTIONS(2624), 1, - anon_sym_RPAREN, - [55529] = 2, + [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, + anon_sym_LBRACE, + STATE(1260), 1, sym_comment, - ACTIONS(2802), 1, - anon_sym_RBRACE, - [55536] = 2, + [66093] = 5, 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, - ACTIONS(2804), 1, + [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, anon_sym_RBRACE, - [55543] = 2, + 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, - ACTIONS(2806), 1, + [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, + 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, - [55550] = 2, + 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, + anon_sym_RPAREN, + STATE(1266), 1, sym_comment, - ACTIONS(2808), 1, - anon_sym_LBRACK, - [55557] = 2, + [66189] = 5, 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, - ACTIONS(2202), 1, - anon_sym_LPAREN, - [55564] = 2, + [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, + anon_sym_RBRACE, + STATE(1268), 1, sym_comment, - ACTIONS(2810), 1, + [66221] = 5, + 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(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(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, - [55571] = 2, + STATE(1271), 1, + sym_comment, + [66269] = 5, 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, - ACTIONS(2812), 1, - anon_sym_LBRACK, - [55578] = 2, + [66285] = 5, 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, - ACTIONS(2814), 1, - anon_sym_LPAREN, - [55585] = 2, + [66301] = 5, 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, - ACTIONS(2816), 1, + [66317] = 5, + 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, - [55592] = 2, + STATE(1275), 1, + sym_comment, + [66333] = 5, 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, - ACTIONS(2818), 1, - anon_sym_LPAREN, - [55599] = 2, + [66349] = 5, 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, - ACTIONS(2820), 1, + [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, + anon_sym_LPAREN, + STATE(1278), 1, + sym_comment, + [66381] = 5, + 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, - [55606] = 2, + 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, + anon_sym_LPAREN, + STATE(1280), 1, sym_comment, - ACTIONS(2822), 1, - anon_sym_LBRACK, + [66413] = 1, + ACTIONS(2844), 1, + ts_builtin_sym_end, + [66417] = 1, + ACTIONS(2846), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [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, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(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), + [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), [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 = 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), + [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), [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}}, 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), + [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), [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [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), + [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), }; #ifdef __cplusplus