From 8f807196afab4a1a1256dbf62a011020c6fe7745 Mon Sep 17 00:00:00 2001 From: Diego Marcilio Date: Mon, 12 Dec 2022 11:32:49 +0100 Subject: [PATCH] Exposing `statement_list` --- corpus/declarations.txt | 12 +- corpus/expressions.txt | 36 +- corpus/literals.txt | 4 +- corpus/statements.txt | 242 +- grammar.js | 12 +- src/grammar.json | 12 +- src/node-types.json | 35 +- src/parser.c | 34201 +++++++++++++++++++------------------- 8 files changed, 17298 insertions(+), 17256 deletions(-) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 376c3f44..18585987 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -403,30 +403,30 @@ func f3() { a(); b(); } (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (call_expression (identifier) - (argument_list)))) + (argument_list))))) (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (call_expression (identifier) (argument_list)) (call_expression (identifier) - (argument_list)))) + (argument_list))))) (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (call_expression (identifier) (argument_list)) (call_expression (identifier) - (argument_list))))) + (argument_list)))))) ================================================================================ Variadic function declarations diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 922b16fc..883ae54c 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -22,7 +22,7 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (call_expression (identifier) (argument_list @@ -33,7 +33,7 @@ func main() { (argument_list (identifier) (identifier))) (call_expression (identifier) - (argument_list (identifier) (variadic_argument (identifier))))))) + (argument_list (identifier) (variadic_argument (identifier)))))))) ============================================ Nested call expressions @@ -49,11 +49,11 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (call_expression (identifier) (argument_list (call_expression (identifier) (argument_list (call_expression (identifier) (argument_list - (identifier)))))))))) + (identifier))))))))))) ============================================ Generic call expressions @@ -71,7 +71,7 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (call_expression (identifier) (type_arguments (type_identifier)) @@ -85,7 +85,7 @@ func main() { (type_arguments (generic_type (type_identifier) (type_arguments (type_identifier))) (type_identifier)) - (argument_list (index_expression (identifier) (identifier))))))) + (argument_list (index_expression (identifier) (identifier)))))))) ============================================ Calls to 'make' and 'new' @@ -107,7 +107,7 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (call_expression (identifier) (argument_list (channel_type (type_identifier)))) @@ -127,7 +127,7 @@ func main() { (call_expression (identifier) (argument_list - (map_type (type_identifier) (type_identifier))))))) + (map_type (type_identifier) (type_identifier)))))))) ============================================ Selector expressions @@ -143,12 +143,12 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (call_expression (selector_expression (selector_expression (identifier) (field_identifier)) (field_identifier)) - (argument_list))))) + (argument_list)))))) ============================================ Indexing expressions @@ -169,13 +169,13 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (index_expression (identifier) (int_literal)) (slice_expression (identifier)) (slice_expression (identifier) (int_literal)) (slice_expression (identifier) (int_literal) (int_literal)) (slice_expression (identifier) (int_literal) (int_literal)) - (slice_expression (identifier) (int_literal) (int_literal) (int_literal))))) + (slice_expression (identifier) (int_literal) (int_literal) (int_literal)))))) ============================================ Type assertion expressions @@ -191,10 +191,10 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (type_assertion_expression (identifier) - (qualified_type (package_identifier) (type_identifier)))))) + (qualified_type (package_identifier) (type_identifier))))))) ============================================ Type conversion expressions @@ -217,7 +217,7 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (type_conversion_expression (slice_type (qualified_type (package_identifier) (type_identifier))) (selector_expression (identifier) (field_identifier))) @@ -239,7 +239,7 @@ func main() { (call_expression (parenthesized_expression (selector_expression (identifier) (field_identifier))) - (argument_list (identifier)))))) + (argument_list (identifier))))))) ============================================ Unary expressions @@ -256,6 +256,6 @@ func main() { (source_file (package_clause (package_identifier)) - (function_declaration (identifier) (parameter_list) (block + (function_declaration (identifier) (parameter_list) (block (statement_list (unary_expression (unary_expression (identifier))) - (unary_expression (call_expression (identifier) (argument_list)))))) + (unary_expression (call_expression (identifier) (argument_list))))))) diff --git a/corpus/literals.txt b/corpus/literals.txt index 57d4f73e..9ea25e64 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -547,8 +547,8 @@ const s1 = func(s string) (int, int) { (type_identifier)) (parameter_declaration (type_identifier))) - (block + (block (statement_list (return_statement (expression_list (int_literal) - (int_literal))))))))) + (int_literal)))))))))) diff --git a/corpus/statements.txt b/corpus/statements.txt index 91e98c9f..5b18ebfd 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -17,7 +17,7 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (var_declaration (var_spec (identifier) @@ -27,7 +27,7 @@ func main() { (const_spec (identifier) (expression_list - (int_literal))))))) + (int_literal)))))))) ================================================================================ Expression statements @@ -47,11 +47,11 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (call_expression (identifier) (argument_list - (int_literal)))))) + (int_literal))))))) ================================================================================ Send statements @@ -71,10 +71,10 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (send_statement (identifier) - (int_literal))))) + (int_literal)))))) ================================================================================ Increment/Decrement statements @@ -95,11 +95,11 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (inc_statement (identifier)) (dec_statement - (identifier))))) + (identifier)))))) ================================================================================ Assignment statements @@ -131,7 +131,7 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (assignment_statement (expression_list (identifier)) @@ -198,7 +198,7 @@ func main() { (expression_list (identifier)) (expression_list - (int_literal)))))) + (int_literal))))))) ================================================================================ Short var declarations @@ -218,14 +218,14 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (short_var_declaration (expression_list (identifier) (identifier)) (expression_list (int_literal) - (int_literal)))))) + (int_literal))))))) ================================================================================ If statements @@ -265,13 +265,13 @@ func main() { (function_declaration name: (identifier) parameters: (parameter_list) - body: (block + body: (block (statement_list (if_statement condition: (identifier) - consequence: (block + consequence: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list)))) + arguments: (argument_list))))) (if_statement initializer: (short_var_declaration left: (expression_list @@ -281,36 +281,36 @@ func main() { function: (identifier) arguments: (argument_list)))) condition: (identifier) - consequence: (block + consequence: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list)))) + arguments: (argument_list))))) (if_statement condition: (identifier) - consequence: (block + consequence: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list))) - alternative: (block + arguments: (argument_list)))) + alternative: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list)))) + arguments: (argument_list))))) (if_statement condition: (identifier) - consequence: (block + consequence: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list))) + arguments: (argument_list)))) alternative: (if_statement condition: (identifier) - consequence: (block + consequence: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list))) - alternative: (block + arguments: (argument_list)))) + alternative: (block (statement_list (call_expression function: (identifier) - arguments: (argument_list)))))))) + arguments: (argument_list)))))))))) ================================================================================ For statements @@ -354,14 +354,14 @@ loop2: (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (for_statement - (block + (block (statement_list (call_expression (identifier) (argument_list)) (goto_statement - (label_name)))) + (label_name))))) (labeled_statement (label_name) (for_statement @@ -376,12 +376,12 @@ loop2: (int_literal)) (inc_statement (identifier))) - (block + (block (statement_list (call_expression (identifier) (argument_list)) (break_statement - (label_name))))) + (label_name)))))) (labeled_statement (label_name) (for_statement @@ -391,30 +391,30 @@ loop2: (int_literal)) (inc_statement (identifier))) - (block + (block (statement_list (call_expression (identifier) (argument_list)) (continue_statement - (label_name))))) + (label_name)))))) (for_statement (for_clause) - (block + (block (statement_list (call_expression (identifier) (argument_list)) - (continue_statement))) + (continue_statement)))) (for_statement (range_clause (expression_list (identifier)) (identifier)) - (block + (block (statement_list (call_expression (identifier) (argument_list (identifier))) - (break_statement)))))) + (break_statement)))))))) ================================================================================ Switch statements @@ -447,33 +447,37 @@ func main() { (function_declaration name: (identifier) parameters: (parameter_list) - body: (block + body: (block (statement_list (expression_switch_statement value: (identifier) (expression_case value: (expression_list (int_literal) (int_literal)) - (call_expression - function: (identifier) - arguments: (argument_list)) - (fallthrough_statement)) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list)) + (fallthrough_statement))) (expression_case value: (expression_list (int_literal)) - (call_expression - function: (identifier) - arguments: (argument_list))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list)))) (default_case - (call_expression - function: (identifier) - arguments: (argument_list)) - (break_statement))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list)) + (break_statement)))) (expression_switch_statement (expression_case value: (expression_list (true)) - (return_statement))) + (statement_list + (return_statement)))) (expression_switch_statement initializer: (short_var_declaration left: (expression_list @@ -482,7 +486,7 @@ func main() { (call_expression function: (identifier) arguments: (argument_list)))) - value: (identifier))))) + value: (identifier)))))) ================================================================================ Type switch statements @@ -517,63 +521,71 @@ func main() { (function_declaration name: (identifier) parameters: (parameter_list) - body: (block + body: (block (statement_list (type_switch_statement value: (identifier) (type_case type: (slice_type element: (type_identifier)) - (call_expression - function: (identifier) - arguments: (argument_list))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list)))) (type_case type: (pointer_type (type_identifier)) - (break_statement))) + (statement_list + (break_statement)))) (type_switch_statement alias: (expression_list (identifier)) value: (identifier) (type_case type: (type_identifier) - (call_expression - function: (identifier) - arguments: (argument_list - (interpreted_string_literal)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (interpreted_string_literal))))) (type_case type: (type_identifier) - (call_expression - function: (identifier) - arguments: (argument_list - (identifier)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (identifier))))) (type_case type: (type_identifier) - (call_expression - function: (identifier) - arguments: (argument_list - (identifier)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (identifier))))) (type_case type: (function_type parameters: (parameter_list (parameter_declaration type: (type_identifier))) result: (type_identifier)) - (call_expression - function: (identifier) - arguments: (argument_list - (identifier)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (identifier))))) (type_case type: (type_identifier) type: (type_identifier) - (call_expression - function: (identifier) - arguments: (argument_list - (interpreted_string_literal)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (interpreted_string_literal))))) (default_case - (call_expression - function: (identifier) - arguments: (argument_list - (interpreted_string_literal)))))))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (interpreted_string_literal)))))))))) ================================================================================ Select statements @@ -602,7 +614,7 @@ func main() { (function_declaration name: (identifier) parameters: (parameter_list) - body: (block + body: (block (statement_list (select_statement (communication_case communication: (receive_statement @@ -610,18 +622,20 @@ func main() { (identifier)) right: (unary_expression operand: (identifier))) - (call_expression - function: (identifier) - arguments: (argument_list - (identifier)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (identifier))))) (communication_case communication: (send_statement channel: (identifier) value: (identifier)) - (call_expression - function: (identifier) - arguments: (argument_list - (int_literal)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (int_literal))))) (communication_case communication: (receive_statement right: (unary_expression @@ -631,12 +645,14 @@ func main() { field: (field_identifier)) arguments: (argument_list (int_literal))))) - (call_expression - function: (identifier) - arguments: (argument_list - (int_literal)))) + (statement_list + (call_expression + function: (identifier) + arguments: (argument_list + (int_literal))))) (default_case - (return_statement)))))) + (statement_list + (return_statement)))))))) ================================================================================ Go and defer statements @@ -657,7 +673,7 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (defer_statement (call_expression (selector_expression @@ -669,7 +685,7 @@ func main() { (selector_expression (identifier) (field_identifier)) - (argument_list)))))) + (argument_list))))))) ================================================================================ Nested statement blocks @@ -690,17 +706,17 @@ func main() { (function_declaration (identifier) (parameter_list) - (block - (block + (block (statement_list + (block (statement_list (call_expression (identifier) (argument_list - (interpreted_string_literal)))) - (block + (interpreted_string_literal))))) + (block (statement_list (call_expression (identifier) (argument_list - (interpreted_string_literal))))))) + (interpreted_string_literal))))))))) ================================================================================ Labels at the ends of statement blocks @@ -718,10 +734,10 @@ func main() { (function_declaration name: (identifier) parameters: (parameter_list) - body: (block - (block + body: (block (statement_list + (block (statement_list (labeled_statement - label: (label_name)))))) + label: (label_name)))))))) ================================================================================ Empty statements @@ -741,8 +757,8 @@ func main() { (function_declaration (identifier) (parameter_list) - (block - (empty_statement)))) + (block (statement_list + (empty_statement))))) ================================================================================ Nested control statements @@ -768,23 +784,23 @@ func main() { (function_declaration (identifier) (parameter_list) - (block + (block (statement_list (for_statement (range_clause (expression_list (identifier) (identifier)) (identifier)) - (block + (block (statement_list (call_expression (func_literal (parameter_list) - (block + (block (statement_list (if_statement (binary_expression (identifier) (identifier)) - (block + (block (statement_list (call_expression (selector_expression (identifier) @@ -793,8 +809,8 @@ func main() { (interpreted_string_literal) (index_expression (identifier) - (identifier)))))))) - (argument_list))))))) + (identifier)))))))))) + (argument_list))))))))) ================================================================================ Top-level statements diff --git a/grammar.js b/grammar.js index 2427c7eb..b0040378 100644 --- a/grammar.js +++ b/grammar.js @@ -425,11 +425,11 @@ module.exports = grammar({ block: $ => seq( '{', - optional($._statement_list), + optional($.statement_list), '}' ), - _statement_list: $ => choice( + statement_list: $ => choice( seq( $._statement, repeat(seq(terminator, $._statement)), @@ -591,13 +591,13 @@ module.exports = grammar({ 'case', field('value', $.expression_list), ':', - optional($._statement_list) + optional($.statement_list) ), default_case: $ => seq( 'default', ':', - optional($._statement_list) + optional($.statement_list) ), type_switch_statement: $ => seq( @@ -625,7 +625,7 @@ module.exports = grammar({ 'case', field('type', commaSep1($._type)), ':', - optional($._statement_list) + optional($.statement_list) ), select_statement: $ => seq( @@ -639,7 +639,7 @@ module.exports = grammar({ 'case', field('communication', choice($.send_statement, $.receive_statement)), ':', - optional($._statement_list) + optional($.statement_list) ), _expression: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index b4c3da91..41a5b9c7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1957,7 +1957,7 @@ "members": [ { "type": "SYMBOL", - "name": "_statement_list" + "name": "statement_list" }, { "type": "BLANK" @@ -1970,7 +1970,7 @@ } ] }, - "_statement_list": { + "statement_list": { "type": "CHOICE", "members": [ { @@ -2877,7 +2877,7 @@ "members": [ { "type": "SYMBOL", - "name": "_statement_list" + "name": "statement_list" }, { "type": "BLANK" @@ -2902,7 +2902,7 @@ "members": [ { "type": "SYMBOL", - "name": "_statement_list" + "name": "statement_list" }, { "type": "BLANK" @@ -3072,7 +3072,7 @@ "members": [ { "type": "SYMBOL", - "name": "_statement_list" + "name": "statement_list" }, { "type": "BLANK" @@ -3147,7 +3147,7 @@ "members": [ { "type": "SYMBOL", - "name": "_statement_list" + "name": "statement_list" }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index ff2c4d85..76b20d53 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -511,11 +511,11 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "_statement", + "type": "statement_list", "named": true } ] @@ -608,11 +608,11 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "_statement", + "type": "statement_list", "named": true } ] @@ -792,11 +792,11 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "_statement", + "type": "statement_list", "named": true } ] @@ -843,11 +843,11 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "_statement", + "type": "statement_list", "named": true } ] @@ -2069,6 +2069,21 @@ ] } }, + { + "type": "statement_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, { "type": "struct_elem", "named": true, @@ -2201,11 +2216,11 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "_statement", + "type": "statement_list", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 28c987fa..3c7b9df9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1269 +#define STATE_COUNT 1270 #define LARGE_STATE_COUNT 22 #define SYMBOL_COUNT 211 #define ALIAS_COUNT 4 @@ -153,7 +153,7 @@ enum { sym_channel_type = 134, sym_function_type = 135, sym_block = 136, - sym__statement_list = 137, + sym_statement_list = 137, sym__statement = 138, sym_empty_statement = 139, sym__simple_statement = 140, @@ -220,7 +220,7 @@ enum { aux_sym_interface_type_repeat1 = 201, aux_sym_constraint_elem_repeat1 = 202, aux_sym_struct_elem_repeat1 = 203, - aux_sym__statement_list_repeat1 = 204, + aux_sym_statement_list_repeat1 = 204, aux_sym_expression_switch_statement_repeat1 = 205, aux_sym_type_switch_statement_repeat1 = 206, aux_sym_select_statement_repeat1 = 207, @@ -371,7 +371,7 @@ static const char * const ts_symbol_names[] = { [sym_channel_type] = "channel_type", [sym_function_type] = "function_type", [sym_block] = "block", - [sym__statement_list] = "_statement_list", + [sym_statement_list] = "statement_list", [sym__statement] = "_statement", [sym_empty_statement] = "empty_statement", [sym__simple_statement] = "_simple_statement", @@ -438,7 +438,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_interface_type_repeat1] = "interface_type_repeat1", [aux_sym_constraint_elem_repeat1] = "constraint_elem_repeat1", [aux_sym_struct_elem_repeat1] = "struct_elem_repeat1", - [aux_sym__statement_list_repeat1] = "_statement_list_repeat1", + [aux_sym_statement_list_repeat1] = "statement_list_repeat1", [aux_sym_expression_switch_statement_repeat1] = "expression_switch_statement_repeat1", [aux_sym_type_switch_statement_repeat1] = "type_switch_statement_repeat1", [aux_sym_select_statement_repeat1] = "select_statement_repeat1", @@ -589,7 +589,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_channel_type] = sym_channel_type, [sym_function_type] = sym_function_type, [sym_block] = sym_block, - [sym__statement_list] = sym__statement_list, + [sym_statement_list] = sym_statement_list, [sym__statement] = sym__statement, [sym_empty_statement] = sym_empty_statement, [sym__simple_statement] = sym__simple_statement, @@ -656,7 +656,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_interface_type_repeat1] = aux_sym_interface_type_repeat1, [aux_sym_constraint_elem_repeat1] = aux_sym_constraint_elem_repeat1, [aux_sym_struct_elem_repeat1] = aux_sym_struct_elem_repeat1, - [aux_sym__statement_list_repeat1] = aux_sym__statement_list_repeat1, + [aux_sym_statement_list_repeat1] = aux_sym_statement_list_repeat1, [aux_sym_expression_switch_statement_repeat1] = aux_sym_expression_switch_statement_repeat1, [aux_sym_type_switch_statement_repeat1] = aux_sym_type_switch_statement_repeat1, [aux_sym_select_statement_repeat1] = aux_sym_select_statement_repeat1, @@ -1219,8 +1219,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__statement_list] = { - .visible = false, + [sym_statement_list] = { + .visible = true, .named = true, }, [sym__statement] = { @@ -1490,7 +1490,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__statement_list_repeat1] = { + [aux_sym_statement_list_repeat1] = { .visible = false, .named = false, }, @@ -2121,10 +2121,10 @@ 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, + [16] = 16, [17] = 11, [18] = 11, [19] = 19, @@ -2140,105 +2140,105 @@ 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, + [32] = 32, + [33] = 32, + [34] = 32, + [35] = 32, + [36] = 32, [37] = 37, - [38] = 38, + [38] = 32, [39] = 39, - [40] = 40, - [41] = 40, + [40] = 39, + [41] = 41, [42] = 39, [43] = 39, - [44] = 40, - [45] = 40, - [46] = 39, - [47] = 39, - [48] = 40, - [49] = 39, - [50] = 40, + [44] = 39, + [45] = 41, + [46] = 41, + [47] = 41, + [48] = 41, + [49] = 41, + [50] = 39, [51] = 51, [52] = 52, [53] = 53, [54] = 54, - [55] = 55, + [55] = 54, [56] = 56, - [57] = 54, - [58] = 56, - [59] = 56, - [60] = 54, + [57] = 57, + [58] = 57, + [59] = 59, + [60] = 57, [61] = 61, - [62] = 61, - [63] = 61, + [62] = 59, + [63] = 63, [64] = 64, - [65] = 54, + [65] = 65, [66] = 54, - [67] = 61, - [68] = 68, - [69] = 56, - [70] = 61, - [71] = 54, - [72] = 61, - [73] = 73, - [74] = 56, - [75] = 75, - [76] = 56, + [67] = 54, + [68] = 59, + [69] = 59, + [70] = 57, + [71] = 57, + [72] = 54, + [73] = 59, + [74] = 54, + [75] = 57, + [76] = 59, [77] = 77, [78] = 78, - [79] = 79, + [79] = 78, [80] = 80, [81] = 81, [82] = 82, [83] = 83, [84] = 84, [85] = 85, - [86] = 80, - [87] = 85, + [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] = 85, + [91] = 86, + [92] = 78, + [93] = 89, + [94] = 88, + [95] = 95, + [96] = 89, [97] = 97, [98] = 98, - [99] = 91, - [100] = 83, + [99] = 85, + [100] = 86, [101] = 101, - [102] = 83, - [103] = 85, - [104] = 77, - [105] = 77, - [106] = 79, - [107] = 88, - [108] = 88, - [109] = 91, - [110] = 91, + [102] = 102, + [103] = 78, + [104] = 88, + [105] = 89, + [106] = 85, + [107] = 86, + [108] = 85, + [109] = 78, + [110] = 86, [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, + [112] = 102, + [113] = 113, + [114] = 102, + [115] = 88, + [116] = 116, + [117] = 78, + [118] = 88, + [119] = 89, + [120] = 120, + [121] = 85, + [122] = 86, + [123] = 88, + [124] = 124, + [125] = 89, + [126] = 102, + [127] = 116, + [128] = 120, + [129] = 120, + [130] = 116, [131] = 131, [132] = 132, [133] = 133, @@ -2247,103 +2247,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [136] = 136, [137] = 137, [138] = 138, - [139] = 139, + [139] = 136, [140] = 140, - [141] = 141, - [142] = 133, - [143] = 143, - [144] = 134, - [145] = 138, - [146] = 139, - [147] = 143, - [148] = 140, - [149] = 149, - [150] = 131, - [151] = 136, - [152] = 149, - [153] = 153, - [154] = 154, - [155] = 135, - [156] = 140, - [157] = 154, - [158] = 153, - [159] = 139, - [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, - [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, + [141] = 140, + [142] = 142, + [143] = 133, + [144] = 144, + [145] = 131, + [146] = 146, + [147] = 140, + [148] = 148, + [149] = 142, + [150] = 144, + [151] = 131, + [152] = 152, + [153] = 138, + [154] = 148, + [155] = 155, + [156] = 132, + [157] = 157, + [158] = 136, + [159] = 132, + [160] = 155, + [161] = 132, + [162] = 155, + [163] = 148, + [164] = 157, + [165] = 131, + [166] = 144, + [167] = 146, + [168] = 140, + [169] = 133, + [170] = 135, + [171] = 146, + [172] = 157, + [173] = 146, + [174] = 152, + [175] = 142, + [176] = 157, + [177] = 138, + [178] = 133, + [179] = 135, + [180] = 136, + [181] = 142, + [182] = 144, + [183] = 135, + [184] = 136, + [185] = 155, + [186] = 148, + [187] = 138, + [188] = 131, + [189] = 144, + [190] = 190, + [191] = 140, + [192] = 136, + [193] = 152, + [194] = 148, + [195] = 135, + [196] = 133, + [197] = 197, + [198] = 155, + [199] = 132, + [200] = 136, + [201] = 201, + [202] = 132, + [203] = 155, + [204] = 148, [205] = 131, - [206] = 131, - [207] = 153, - [208] = 149, - [209] = 154, - [210] = 154, - [211] = 131, - [212] = 143, - [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, - [231] = 153, - [232] = 134, - [233] = 131, - [234] = 133, - [235] = 141, + [206] = 144, + [207] = 138, + [208] = 208, + [209] = 140, + [210] = 157, + [211] = 140, + [212] = 144, + [213] = 146, + [214] = 214, + [215] = 131, + [216] = 148, + [217] = 155, + [218] = 142, + [219] = 133, + [220] = 138, + [221] = 136, + [222] = 138, + [223] = 140, + [224] = 135, + [225] = 132, + [226] = 157, + [227] = 144, + [228] = 131, + [229] = 148, + [230] = 155, + [231] = 132, + [232] = 146, + [233] = 136, + [234] = 136, + [235] = 138, [236] = 236, [237] = 237, [238] = 238, @@ -2409,24 +2409,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [298] = 298, [299] = 299, [300] = 300, - [301] = 278, - [302] = 302, - [303] = 303, - [304] = 257, + [301] = 301, + [302] = 245, + [303] = 251, + [304] = 304, [305] = 305, [306] = 306, [307] = 307, [308] = 308, - [309] = 264, + [309] = 309, [310] = 310, - [311] = 311, + [311] = 292, [312] = 312, [313] = 313, [314] = 314, [315] = 315, [316] = 316, [317] = 317, - [318] = 318, + [318] = 285, [319] = 319, [320] = 320, [321] = 321, @@ -2445,525 +2445,525 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [334] = 334, [335] = 335, [336] = 336, - [337] = 248, + [337] = 337, [338] = 338, - [339] = 265, + [339] = 263, [340] = 295, - [341] = 296, - [342] = 297, - [343] = 283, + [341] = 294, + [342] = 300, + [343] = 299, [344] = 298, - [345] = 300, - [346] = 294, - [347] = 303, - [348] = 278, - [349] = 308, - [350] = 336, - [351] = 248, - [352] = 334, - [353] = 329, - [354] = 323, - [355] = 338, - [356] = 312, - [357] = 306, - [358] = 322, - [359] = 257, - [360] = 264, - [361] = 327, - [362] = 320, - [363] = 325, - [364] = 310, - [365] = 315, + [345] = 264, + [346] = 297, + [347] = 301, + [348] = 312, + [349] = 285, + [350] = 326, + [351] = 332, + [352] = 337, + [353] = 309, + [354] = 314, + [355] = 313, + [356] = 292, + [357] = 324, + [358] = 321, + [359] = 320, + [360] = 319, + [361] = 316, + [362] = 331, + [363] = 245, + [364] = 317, + [365] = 306, [366] = 335, - [367] = 331, - [368] = 330, - [369] = 311, - [370] = 313, + [367] = 310, + [368] = 308, + [369] = 336, + [370] = 325, [371] = 307, - [372] = 326, - [373] = 318, - [374] = 332, - [375] = 319, - [376] = 317, - [377] = 316, - [378] = 333, - [379] = 314, - [380] = 321, - [381] = 328, - [382] = 265, + [372] = 330, + [373] = 323, + [374] = 338, + [375] = 333, + [376] = 329, + [377] = 251, + [378] = 322, + [379] = 327, + [380] = 328, + [381] = 334, + [382] = 263, [383] = 300, - [384] = 294, - [385] = 297, - [386] = 296, - [387] = 295, - [388] = 298, - [389] = 389, - [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, + [384] = 299, + [385] = 294, + [386] = 298, + [387] = 297, + [388] = 388, + [389] = 295, + [390] = 301, + [391] = 319, + [392] = 322, + [393] = 336, + [394] = 327, + [395] = 332, + [396] = 326, + [397] = 324, + [398] = 321, + [399] = 320, + [400] = 335, + [401] = 331, + [402] = 325, + [403] = 307, + [404] = 333, + [405] = 334, + [406] = 337, + [407] = 316, + [408] = 310, + [409] = 245, + [410] = 309, + [411] = 317, + [412] = 306, + [413] = 313, + [414] = 338, + [415] = 329, + [416] = 312, + [417] = 251, + [418] = 328, + [419] = 314, + [420] = 323, + [421] = 308, + [422] = 285, + [423] = 292, + [424] = 330, + [425] = 295, [426] = 294, - [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, - [457] = 315, - [458] = 312, - [459] = 314, - [460] = 326, - [461] = 330, - [462] = 308, - [463] = 298, - [464] = 265, - [465] = 297, - [466] = 296, - [467] = 295, + [427] = 301, + [428] = 263, + [429] = 251, + [430] = 310, + [431] = 320, + [432] = 321, + [433] = 324, + [434] = 326, + [435] = 332, + [436] = 336, + [437] = 330, + [438] = 327, + [439] = 323, + [440] = 322, + [441] = 309, + [442] = 328, + [443] = 292, + [444] = 329, + [445] = 325, + [446] = 307, + [447] = 338, + [448] = 314, + [449] = 331, + [450] = 333, + [451] = 334, + [452] = 337, + [453] = 313, + [454] = 308, + [455] = 316, + [456] = 245, + [457] = 285, + [458] = 317, + [459] = 335, + [460] = 306, + [461] = 319, + [462] = 312, + [463] = 463, + [464] = 300, + [465] = 299, + [466] = 298, + [467] = 297, [468] = 468, - [469] = 469, - [470] = 296, - [471] = 298, - [472] = 265, - [473] = 297, - [474] = 474, - [475] = 38, - [476] = 476, - [477] = 389, - [478] = 295, - [479] = 479, - [480] = 300, - [481] = 294, - [482] = 298, - [483] = 297, - [484] = 389, - [485] = 303, + [469] = 263, + [470] = 298, + [471] = 295, + [472] = 472, + [473] = 473, + [474] = 299, + [475] = 294, + [476] = 263, + [477] = 37, + [478] = 478, + [479] = 297, + [480] = 388, + [481] = 300, + [482] = 300, + [483] = 295, + [484] = 388, + [485] = 294, [486] = 486, - [487] = 300, - [488] = 488, - [489] = 489, - [490] = 294, - [491] = 296, - [492] = 295, - [493] = 311, + [487] = 487, + [488] = 301, + [489] = 297, + [490] = 299, + [491] = 298, + [492] = 492, + [493] = 493, [494] = 494, [495] = 323, - [496] = 329, - [497] = 497, - [498] = 336, - [499] = 335, - [500] = 334, - [501] = 257, - [502] = 316, - [503] = 265, - [504] = 38, - [505] = 332, - [506] = 506, - [507] = 331, - [508] = 278, - [509] = 327, - [510] = 307, - [511] = 494, - [512] = 265, - [513] = 333, - [514] = 494, - [515] = 325, - [516] = 338, - [517] = 328, - [518] = 494, - [519] = 321, - [520] = 319, - [521] = 318, - [522] = 494, - [523] = 317, - [524] = 468, - [525] = 313, - [526] = 303, - [527] = 310, - [528] = 315, - [529] = 312, - [530] = 308, - [531] = 330, - [532] = 326, - [533] = 306, - [534] = 314, - [535] = 494, - [536] = 322, - [537] = 264, - [538] = 248, - [539] = 320, - [540] = 540, - [541] = 248, - [542] = 326, - [543] = 330, - [544] = 308, - [545] = 312, - [546] = 315, - [547] = 540, - [548] = 310, - [549] = 313, - [550] = 317, - [551] = 318, - [552] = 319, - [553] = 320, - [554] = 265, - [555] = 257, - [556] = 468, - [557] = 328, - [558] = 325, - [559] = 333, - [560] = 311, - [561] = 307, - [562] = 327, - [563] = 298, - [564] = 331, - [565] = 297, - [566] = 296, - [567] = 295, - [568] = 568, - [569] = 332, - [570] = 321, - [571] = 316, - [572] = 322, - [573] = 264, - [574] = 306, - [575] = 575, - [576] = 314, - [577] = 338, - [578] = 334, - [579] = 579, - [580] = 323, - [581] = 581, - [582] = 298, - [583] = 540, - [584] = 278, - [585] = 297, - [586] = 296, - [587] = 295, - [588] = 329, - [589] = 589, - [590] = 336, - [591] = 335, + [496] = 322, + [497] = 329, + [498] = 328, + [499] = 338, + [500] = 335, + [501] = 306, + [502] = 317, + [503] = 330, + [504] = 336, + [505] = 331, + [506] = 332, + [507] = 326, + [508] = 324, + [509] = 493, + [510] = 321, + [511] = 320, + [512] = 319, + [513] = 493, + [514] = 325, + [515] = 307, + [516] = 333, + [517] = 334, + [518] = 337, + [519] = 316, + [520] = 310, + [521] = 521, + [522] = 312, + [523] = 263, + [524] = 301, + [525] = 308, + [526] = 313, + [527] = 314, + [528] = 309, + [529] = 327, + [530] = 292, + [531] = 493, + [532] = 263, + [533] = 285, + [534] = 251, + [535] = 37, + [536] = 245, + [537] = 493, + [538] = 463, + [539] = 493, + [540] = 335, + [541] = 541, + [542] = 328, + [543] = 332, + [544] = 319, + [545] = 317, + [546] = 245, + [547] = 547, + [548] = 336, + [549] = 251, + [550] = 320, + [551] = 330, + [552] = 552, + [553] = 263, + [554] = 554, + [555] = 314, + [556] = 331, + [557] = 557, + [558] = 329, + [559] = 338, + [560] = 300, + [561] = 299, + [562] = 321, + [563] = 324, + [564] = 564, + [565] = 306, + [566] = 334, + [567] = 298, + [568] = 313, + [569] = 308, + [570] = 297, + [571] = 312, + [572] = 310, + [573] = 323, + [574] = 322, + [575] = 325, + [576] = 307, + [577] = 541, + [578] = 316, + [579] = 309, + [580] = 327, + [581] = 297, + [582] = 292, + [583] = 298, + [584] = 326, + [585] = 337, + [586] = 285, + [587] = 299, + [588] = 541, + [589] = 463, + [590] = 333, + [591] = 300, [592] = 592, [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, + [596] = 592, + [597] = 594, + [598] = 492, + [599] = 599, + [600] = 600, + [601] = 388, + [602] = 594, + [603] = 593, + [604] = 600, + [605] = 593, + [606] = 599, + [607] = 388, + [608] = 593, + [609] = 609, + [610] = 594, + [611] = 593, + [612] = 594, + [613] = 592, + [614] = 599, + [615] = 600, + [616] = 592, + [617] = 37, + [618] = 599, + [619] = 592, + [620] = 592, + [621] = 595, + [622] = 599, + [623] = 599, + [624] = 595, + [625] = 594, + [626] = 593, [627] = 627, [628] = 628, [629] = 629, [630] = 630, [631] = 631, - [632] = 632, + [632] = 630, [633] = 633, - [634] = 629, - [635] = 632, - [636] = 633, - [637] = 632, + [634] = 630, + [635] = 627, + [636] = 636, + [637] = 628, [638] = 638, [639] = 639, - [640] = 633, - [641] = 641, - [642] = 489, - [643] = 633, - [644] = 629, - [645] = 632, - [646] = 632, - [647] = 647, - [648] = 639, - [649] = 633, - [650] = 629, - [651] = 651, - [652] = 629, - [653] = 639, - [654] = 654, - [655] = 639, - [656] = 633, - [657] = 632, - [658] = 629, - [659] = 581, - [660] = 660, - [661] = 581, + [640] = 628, + [641] = 633, + [642] = 627, + [643] = 627, + [644] = 628, + [645] = 627, + [646] = 630, + [647] = 630, + [648] = 648, + [649] = 649, + [650] = 633, + [651] = 633, + [652] = 492, + [653] = 627, + [654] = 628, + [655] = 655, + [656] = 656, + [657] = 628, + [658] = 630, + [659] = 547, + [660] = 547, + [661] = 661, [662] = 662, - [663] = 581, + [663] = 547, [664] = 664, [665] = 665, - [666] = 666, - [667] = 667, + [666] = 547, + [667] = 547, [668] = 668, - [669] = 581, - [670] = 581, + [669] = 669, + [670] = 670, [671] = 671, [672] = 672, [673] = 673, [674] = 674, [675] = 675, [676] = 676, - [677] = 675, - [678] = 671, - [679] = 671, - [680] = 680, - [681] = 681, - [682] = 675, + [677] = 677, + [678] = 672, + [679] = 675, + [680] = 672, + [681] = 675, + [682] = 682, [683] = 683, [684] = 684, [685] = 685, [686] = 686, - [687] = 685, - [688] = 688, + [687] = 684, + [688] = 686, [689] = 689, [690] = 690, - [691] = 685, + [691] = 684, [692] = 692, - [693] = 693, + [693] = 692, [694] = 694, - [695] = 694, - [696] = 690, - [697] = 689, - [698] = 693, - [699] = 689, + [695] = 695, + [696] = 686, + [697] = 694, + [698] = 698, + [699] = 685, [700] = 700, - [701] = 701, + [701] = 684, [702] = 702, - [703] = 702, - [704] = 684, - [705] = 693, - [706] = 706, - [707] = 689, - [708] = 708, - [709] = 690, - [710] = 692, - [711] = 702, - [712] = 693, + [703] = 690, + [704] = 704, + [705] = 705, + [706] = 685, + [707] = 707, + [708] = 686, + [709] = 683, + [710] = 686, + [711] = 711, + [712] = 684, [713] = 713, [714] = 714, - [715] = 714, - [716] = 700, - [717] = 708, - [718] = 694, - [719] = 689, - [720] = 701, - [721] = 692, - [722] = 702, - [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, + [715] = 695, + [716] = 692, + [717] = 707, + [718] = 718, + [719] = 711, + [720] = 685, + [721] = 686, + [722] = 711, + [723] = 684, + [724] = 714, + [725] = 683, + [726] = 714, + [727] = 695, + [728] = 705, + [729] = 694, + [730] = 700, + [731] = 707, + [732] = 692, + [733] = 690, + [734] = 714, + [735] = 683, + [736] = 707, + [737] = 700, + [738] = 700, + [739] = 690, + [740] = 705, + [741] = 741, + [742] = 695, + [743] = 694, + [744] = 744, + [745] = 270, + [746] = 286, + [747] = 280, + [748] = 284, [749] = 749, - [750] = 251, - [751] = 249, - [752] = 246, - [753] = 245, + [750] = 284, + [751] = 270, + [752] = 286, + [753] = 280, [754] = 754, [755] = 755, [756] = 756, [757] = 757, [758] = 758, [759] = 756, - [760] = 757, + [760] = 758, [761] = 758, - [762] = 758, - [763] = 756, + [762] = 756, + [763] = 757, [764] = 757, [765] = 765, [766] = 766, - [767] = 766, - [768] = 766, - [769] = 747, - [770] = 770, + [767] = 744, + [768] = 768, + [769] = 768, + [770] = 768, [771] = 771, - [772] = 749, + [772] = 772, [773] = 773, - [774] = 774, - [775] = 236, + [774] = 749, + [775] = 775, [776] = 776, - [777] = 777, - [778] = 241, + [777] = 236, + [778] = 778, [779] = 779, [780] = 780, [781] = 781, - [782] = 782, - [783] = 236, + [782] = 236, + [783] = 242, [784] = 784, [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, - [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, - [843] = 282, - [844] = 281, + [787] = 250, + [788] = 287, + [789] = 259, + [790] = 279, + [791] = 261, + [792] = 242, + [793] = 243, + [794] = 262, + [795] = 249, + [796] = 278, + [797] = 281, + [798] = 282, + [799] = 254, + [800] = 283, + [801] = 275, + [802] = 257, + [803] = 261, + [804] = 248, + [805] = 246, + [806] = 260, + [807] = 289, + [808] = 271, + [809] = 252, + [810] = 258, + [811] = 265, + [812] = 266, + [813] = 813, + [814] = 255, + [815] = 256, + [816] = 250, + [817] = 257, + [818] = 275, + [819] = 266, + [820] = 252, + [821] = 821, + [822] = 271, + [823] = 262, + [824] = 289, + [825] = 283, + [826] = 259, + [827] = 260, + [828] = 287, + [829] = 249, + [830] = 830, + [831] = 755, + [832] = 255, + [833] = 256, + [834] = 254, + [835] = 754, + [836] = 243, + [837] = 282, + [838] = 265, + [839] = 248, + [840] = 278, + [841] = 281, + [842] = 258, + [843] = 279, + [844] = 246, [845] = 845, [846] = 846, - [847] = 847, + [847] = 755, [848] = 848, [849] = 849, [850] = 850, [851] = 851, [852] = 852, [853] = 853, - [854] = 854, - [855] = 754, + [854] = 754, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, @@ -2971,7 +2971,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [860] = 860, [861] = 861, [862] = 862, - [863] = 755, + [863] = 863, [864] = 864, [865] = 865, [866] = 866, @@ -2992,142 +2992,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [881] = 881, [882] = 882, [883] = 883, - [884] = 794, + [884] = 884, [885] = 885, [886] = 886, [887] = 887, - [888] = 888, + [888] = 813, [889] = 889, [890] = 890, [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 794, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, [899] = 899, - [900] = 900, + [900] = 880, [901] = 901, [902] = 902, - [903] = 794, + [903] = 903, [904] = 904, [905] = 905, [906] = 906, [907] = 907, [908] = 908, [909] = 909, - [910] = 910, + [910] = 813, [911] = 911, [912] = 912, - [913] = 890, + [913] = 913, [914] = 914, - [915] = 915, - [916] = 794, + [915] = 909, + [916] = 916, [917] = 917, - [918] = 918, + [918] = 912, [919] = 919, [920] = 920, [921] = 921, [922] = 922, [923] = 923, - [924] = 897, + [924] = 909, [925] = 925, [926] = 926, - [927] = 927, + [927] = 813, [928] = 928, [929] = 929, - [930] = 902, + [930] = 813, [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, [936] = 936, - [937] = 937, + [937] = 912, [938] = 938, [939] = 939, [940] = 940, [941] = 941, [942] = 942, [943] = 943, - [944] = 944, + [944] = 880, [945] = 945, - [946] = 897, - [947] = 794, - [948] = 902, - [949] = 949, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 813, [950] = 950, - [951] = 890, + [951] = 951, [952] = 952, [953] = 953, [954] = 954, - [955] = 955, + [955] = 954, [956] = 956, - [957] = 954, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 956, - [962] = 962, + [961] = 961, + [962] = 957, [963] = 963, [964] = 964, [965] = 965, - [966] = 966, - [967] = 956, - [968] = 960, + [966] = 957, + [967] = 967, + [968] = 956, [969] = 969, [970] = 970, - [971] = 958, - [972] = 963, - [973] = 954, - [974] = 974, - [975] = 963, - [976] = 964, - [977] = 977, + [971] = 954, + [972] = 956, + [973] = 956, + [974] = 957, + [975] = 954, + [976] = 976, + [977] = 965, [978] = 978, [979] = 979, - [980] = 963, + [980] = 980, [981] = 981, [982] = 982, - [983] = 966, - [984] = 984, - [985] = 960, - [986] = 956, + [983] = 983, + [984] = 961, + [985] = 985, + [986] = 986, [987] = 987, - [988] = 988, + [988] = 961, [989] = 989, - [990] = 956, - [991] = 991, - [992] = 964, - [993] = 958, - [994] = 956, - [995] = 954, - [996] = 966, + [990] = 959, + [991] = 956, + [992] = 954, + [993] = 993, + [994] = 957, + [995] = 995, + [996] = 959, [997] = 997, - [998] = 963, - [999] = 963, - [1000] = 954, - [1001] = 1001, - [1002] = 954, - [1003] = 1003, + [998] = 954, + [999] = 999, + [1000] = 957, + [1001] = 954, + [1002] = 964, + [1003] = 965, [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 954, - [1008] = 963, - [1009] = 1009, + [1005] = 964, + [1006] = 956, + [1007] = 956, + [1008] = 1008, + [1009] = 871, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 867, + [1014] = 1014, [1015] = 1015, [1016] = 1016, - [1017] = 1009, + [1017] = 1017, [1018] = 1018, - [1019] = 754, + [1019] = 1019, [1020] = 1020, [1021] = 1021, [1022] = 1022, @@ -3135,248 +3135,249 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 854, - [1028] = 1028, + [1027] = 1027, + [1028] = 860, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1035, - [1036] = 867, - [1037] = 1037, + [1035] = 871, + [1036] = 1036, + [1037] = 860, [1038] = 1038, [1039] = 1039, - [1040] = 1040, + [1040] = 1036, [1041] = 1041, - [1042] = 1021, + [1042] = 1042, [1043] = 1043, [1044] = 1044, [1045] = 1045, - [1046] = 1046, - [1047] = 1045, + [1046] = 754, + [1047] = 871, [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1048, - [1052] = 1049, + [1051] = 1051, + [1052] = 1043, [1053] = 1053, - [1054] = 1038, - [1055] = 1049, - [1056] = 1045, - [1057] = 1050, + [1054] = 1054, + [1055] = 1055, + [1056] = 1039, + [1057] = 1045, [1058] = 1058, - [1059] = 1035, - [1060] = 1048, + [1059] = 1059, + [1060] = 1060, [1061] = 1061, - [1062] = 1038, - [1063] = 1031, - [1064] = 1021, - [1065] = 754, - [1066] = 1048, - [1067] = 1035, - [1068] = 1038, - [1069] = 1069, - [1070] = 854, - [1071] = 1032, - [1072] = 1050, - [1073] = 867, - [1074] = 867, - [1075] = 1049, - [1076] = 1035, - [1077] = 1077, - [1078] = 1078, - [1079] = 1031, - [1080] = 1026, - [1081] = 1032, - [1082] = 1031, - [1083] = 1083, + [1062] = 1010, + [1063] = 1063, + [1064] = 1061, + [1065] = 1065, + [1066] = 1045, + [1067] = 1053, + [1068] = 1053, + [1069] = 1051, + [1070] = 1049, + [1071] = 1071, + [1072] = 1039, + [1073] = 1033, + [1074] = 1049, + [1075] = 1075, + [1076] = 1036, + [1077] = 1027, + [1078] = 1032, + [1079] = 860, + [1080] = 1032, + [1081] = 1045, + [1082] = 1082, + [1083] = 871, [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, - [1098] = 1098, - [1099] = 1048, - [1100] = 755, - [1101] = 1049, - [1102] = 1035, - [1103] = 1031, - [1104] = 854, - [1105] = 1045, - [1106] = 1106, - [1107] = 1107, - [1108] = 867, - [1109] = 1109, - [1110] = 1045, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, + [1085] = 1053, + [1086] = 755, + [1087] = 1087, + [1088] = 1088, + [1089] = 860, + [1090] = 1032, + [1091] = 1027, + [1092] = 1045, + [1093] = 1036, + [1094] = 1053, + [1095] = 1095, + [1096] = 1039, + [1097] = 1051, + [1098] = 1049, + [1099] = 1049, + [1100] = 1049, + [1101] = 1101, + [1102] = 1053, + [1103] = 1039, + [1104] = 1036, + [1105] = 1032, + [1106] = 1045, + [1107] = 1032, + [1108] = 860, + [1109] = 1043, + [1110] = 1033, + [1111] = 1036, + [1112] = 1039, + [1113] = 871, + [1114] = 754, [1115] = 1115, [1116] = 1116, - [1117] = 1117, + [1117] = 1116, [1118] = 1118, - [1119] = 1116, - [1120] = 1118, - [1121] = 1121, - [1122] = 949, + [1119] = 1119, + [1120] = 1120, + [1121] = 1116, + [1122] = 273, [1123] = 1123, [1124] = 1124, - [1125] = 1117, - [1126] = 1126, + [1125] = 1123, + [1126] = 1123, [1127] = 1127, [1128] = 1128, - [1129] = 1127, - [1130] = 953, - [1131] = 286, - [1132] = 259, - [1133] = 1126, - [1134] = 909, - [1135] = 1135, - [1136] = 907, - [1137] = 1116, - [1138] = 1116, - [1139] = 1139, - [1140] = 1140, - [1141] = 1126, - [1142] = 273, - [1143] = 900, - [1144] = 1144, - [1145] = 1124, - [1146] = 1127, + [1129] = 1129, + [1130] = 1130, + [1131] = 898, + [1132] = 1132, + [1133] = 1133, + [1134] = 1128, + [1135] = 1124, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 883, + [1140] = 1124, + [1141] = 904, + [1142] = 1142, + [1143] = 1143, + [1144] = 1120, + [1145] = 1128, + [1146] = 1132, [1147] = 1147, - [1148] = 1126, + [1148] = 1124, [1149] = 1149, - [1150] = 1117, - [1151] = 1151, - [1152] = 1126, - [1153] = 1118, - [1154] = 1117, - [1155] = 1155, - [1156] = 1127, - [1157] = 1157, - [1158] = 1118, - [1159] = 1116, - [1160] = 1116, - [1161] = 1126, - [1162] = 1124, + [1150] = 1150, + [1151] = 1120, + [1152] = 1152, + [1153] = 293, + [1154] = 1128, + [1155] = 893, + [1156] = 1123, + [1157] = 1128, + [1158] = 1158, + [1159] = 1132, + [1160] = 1160, + [1161] = 1120, + [1162] = 1123, [1163] = 1163, [1164] = 1164, - [1165] = 1165, - [1166] = 1117, - [1167] = 1167, - [1168] = 1127, - [1169] = 1169, + [1165] = 1124, + [1166] = 1120, + [1167] = 1123, + [1168] = 1168, + [1169] = 1128, [1170] = 1170, - [1171] = 1171, + [1171] = 1116, [1172] = 1172, [1173] = 1173, [1174] = 1174, - [1175] = 1117, - [1176] = 1176, - [1177] = 1177, + [1175] = 1124, + [1176] = 1120, + [1177] = 277, [1178] = 1178, [1179] = 1179, - [1180] = 1127, + [1180] = 905, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1183, + [1184] = 1184, [1185] = 1185, - [1186] = 1183, + [1186] = 1186, [1187] = 1187, - [1188] = 1181, - [1189] = 1187, + [1188] = 1186, + [1189] = 1189, [1190] = 1190, [1191] = 1191, [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1191, + [1196] = 1196, [1197] = 1197, [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1201, + [1201] = 1191, [1202] = 1202, [1203] = 1203, - [1204] = 1191, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1200, - [1209] = 1209, + [1204] = 1203, + [1205] = 1191, + [1206] = 1191, + [1207] = 1187, + [1208] = 1208, + [1209] = 1187, [1210] = 1210, [1211] = 1211, [1212] = 1212, - [1213] = 1200, - [1214] = 1210, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, + [1213] = 1213, + [1214] = 1191, + [1215] = 1186, + [1216] = 1183, + [1217] = 1187, [1218] = 1218, - [1219] = 1210, - [1220] = 1206, + [1219] = 1185, + [1220] = 1220, [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1187, - [1225] = 1225, - [1226] = 1207, - [1227] = 1200, + [1222] = 1186, + [1223] = 1198, + [1224] = 1220, + [1225] = 1220, + [1226] = 1226, + [1227] = 1208, [1228] = 1228, - [1229] = 1229, - [1230] = 1212, - [1231] = 1191, - [1232] = 1232, - [1233] = 1181, - [1234] = 1206, - [1235] = 1187, - [1236] = 1183, - [1237] = 1183, - [1238] = 1191, - [1239] = 1212, + [1229] = 1203, + [1230] = 1191, + [1231] = 1203, + [1232] = 1221, + [1233] = 1187, + [1234] = 1234, + [1235] = 1235, + [1236] = 1186, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, [1240] = 1240, - [1241] = 1210, + [1241] = 1241, [1242] = 1242, - [1243] = 1201, + [1243] = 1183, [1244] = 1244, - [1245] = 1187, - [1246] = 1183, - [1247] = 1247, + [1245] = 1186, + [1246] = 1193, + [1247] = 1220, [1248] = 1248, - [1249] = 1249, - [1250] = 1249, - [1251] = 1191, - [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, + [1249] = 1208, + [1250] = 1250, + [1251] = 1187, + [1252] = 1203, + [1253] = 1203, + [1254] = 1193, + [1255] = 1255, + [1256] = 1221, + [1257] = 1198, + [1258] = 1258, + [1259] = 1191, + [1260] = 1260, + [1261] = 1248, + [1262] = 1226, + [1263] = 1221, + [1264] = 1248, + [1265] = 1226, + [1266] = 1226, + [1267] = 1226, + [1268] = 1226, + [1269] = 1248, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -6364,18 +6365,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [24] = {.lex_state = 58}, [25] = {.lex_state = 58}, [26] = {.lex_state = 58}, - [27] = {.lex_state = 56}, + [27] = {.lex_state = 58}, [28] = {.lex_state = 56}, - [29] = {.lex_state = 58}, + [29] = {.lex_state = 56}, [30] = {.lex_state = 56}, - [31] = {.lex_state = 58}, + [31] = {.lex_state = 56}, [32] = {.lex_state = 58}, [33] = {.lex_state = 58}, [34] = {.lex_state = 58}, [35] = {.lex_state = 58}, [36] = {.lex_state = 58}, [37] = {.lex_state = 56}, - [38] = {.lex_state = 56}, + [38] = {.lex_state = 58}, [39] = {.lex_state = 58}, [40] = {.lex_state = 58}, [41] = {.lex_state = 58}, @@ -6574,11 +6575,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [234] = {.lex_state = 58}, [235] = {.lex_state = 58}, [236] = {.lex_state = 56}, - [237] = {.lex_state = 1}, - [238] = {.lex_state = 1}, - [239] = {.lex_state = 56}, + [237] = {.lex_state = 56}, + [238] = {.lex_state = 56}, + [239] = {.lex_state = 1}, [240] = {.lex_state = 56}, - [241] = {.lex_state = 56}, + [241] = {.lex_state = 1}, [242] = {.lex_state = 56}, [243] = {.lex_state = 56}, [244] = {.lex_state = 56}, @@ -6600,9 +6601,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 56}, [261] = {.lex_state = 56}, [262] = {.lex_state = 56}, - [263] = {.lex_state = 56}, - [264] = {.lex_state = 56}, - [265] = {.lex_state = 1}, + [263] = {.lex_state = 1}, + [264] = {.lex_state = 1}, + [265] = {.lex_state = 56}, [266] = {.lex_state = 56}, [267] = {.lex_state = 56}, [268] = {.lex_state = 56}, @@ -6620,28 +6621,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 56}, [281] = {.lex_state = 56}, [282] = {.lex_state = 56}, - [283] = {.lex_state = 1}, + [283] = {.lex_state = 56}, [284] = {.lex_state = 56}, [285] = {.lex_state = 56}, [286] = {.lex_state = 56}, - [287] = {.lex_state = 7}, + [287] = {.lex_state = 56}, [288] = {.lex_state = 56}, [289] = {.lex_state = 56}, - [290] = {.lex_state = 56}, + [290] = {.lex_state = 7}, [291] = {.lex_state = 56}, [292] = {.lex_state = 56}, [293] = {.lex_state = 56}, [294] = {.lex_state = 1}, [295] = {.lex_state = 1}, - [296] = {.lex_state = 1}, + [296] = {.lex_state = 58}, [297] = {.lex_state = 1}, [298] = {.lex_state = 1}, - [299] = {.lex_state = 58}, + [299] = {.lex_state = 1}, [300] = {.lex_state = 1}, [301] = {.lex_state = 1}, - [302] = {.lex_state = 4}, + [302] = {.lex_state = 1}, [303] = {.lex_state = 1}, - [304] = {.lex_state = 1}, + [304] = {.lex_state = 4}, [305] = {.lex_state = 4}, [306] = {.lex_state = 1}, [307] = {.lex_state = 1}, @@ -6652,7 +6653,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [312] = {.lex_state = 1}, [313] = {.lex_state = 1}, [314] = {.lex_state = 1}, - [315] = {.lex_state = 1}, + [315] = {.lex_state = 4}, [316] = {.lex_state = 1}, [317] = {.lex_state = 1}, [318] = {.lex_state = 1}, @@ -6661,7 +6662,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 = 1}, [325] = {.lex_state = 1}, [326] = {.lex_state = 1}, [327] = {.lex_state = 1}, @@ -6800,85 +6801,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 6}, [461] = {.lex_state = 6}, [462] = {.lex_state = 6}, - [463] = {.lex_state = 6}, - [464] = {.lex_state = 2}, + [463] = {.lex_state = 2}, + [464] = {.lex_state = 6}, [465] = {.lex_state = 6}, [466] = {.lex_state = 6}, [467] = {.lex_state = 6}, - [468] = {.lex_state = 2}, - [469] = {.lex_state = 56}, + [468] = {.lex_state = 56}, + [469] = {.lex_state = 2}, [470] = {.lex_state = 2}, [471] = {.lex_state = 2}, - [472] = {.lex_state = 7}, - [473] = {.lex_state = 2}, - [474] = {.lex_state = 7}, - [475] = {.lex_state = 56}, - [476] = {.lex_state = 56}, - [477] = {.lex_state = 2}, - [478] = {.lex_state = 2}, - [479] = {.lex_state = 56}, + [472] = {.lex_state = 56}, + [473] = {.lex_state = 56}, + [474] = {.lex_state = 2}, + [475] = {.lex_state = 2}, + [476] = {.lex_state = 7}, + [477] = {.lex_state = 56}, + [478] = {.lex_state = 7}, + [479] = {.lex_state = 2}, [480] = {.lex_state = 2}, [481] = {.lex_state = 2}, [482] = {.lex_state = 7}, [483] = {.lex_state = 7}, [484] = {.lex_state = 6}, - [485] = {.lex_state = 2}, + [485] = {.lex_state = 7}, [486] = {.lex_state = 2}, - [487] = {.lex_state = 7}, + [487] = {.lex_state = 2}, [488] = {.lex_state = 2}, - [489] = {.lex_state = 2}, + [489] = {.lex_state = 7}, [490] = {.lex_state = 7}, [491] = {.lex_state = 7}, - [492] = {.lex_state = 7}, - [493] = {.lex_state = 2}, + [492] = {.lex_state = 2}, + [493] = {.lex_state = 6}, [494] = {.lex_state = 6}, [495] = {.lex_state = 2}, [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}, + [506] = {.lex_state = 2}, [507] = {.lex_state = 2}, [508] = {.lex_state = 2}, - [509] = {.lex_state = 2}, + [509] = {.lex_state = 6}, [510] = {.lex_state = 2}, - [511] = {.lex_state = 6}, - [512] = {.lex_state = 6}, - [513] = {.lex_state = 2}, - [514] = {.lex_state = 6}, + [511] = {.lex_state = 2}, + [512] = {.lex_state = 2}, + [513] = {.lex_state = 6}, + [514] = {.lex_state = 2}, [515] = {.lex_state = 2}, [516] = {.lex_state = 2}, [517] = {.lex_state = 2}, - [518] = {.lex_state = 6}, + [518] = {.lex_state = 2}, [519] = {.lex_state = 2}, [520] = {.lex_state = 2}, - [521] = {.lex_state = 2}, - [522] = {.lex_state = 6}, - [523] = {.lex_state = 2}, - [524] = {.lex_state = 6}, + [521] = {.lex_state = 0}, + [522] = {.lex_state = 2}, + [523] = {.lex_state = 6}, + [524] = {.lex_state = 7}, [525] = {.lex_state = 2}, - [526] = {.lex_state = 7}, + [526] = {.lex_state = 2}, [527] = {.lex_state = 2}, [528] = {.lex_state = 2}, [529] = {.lex_state = 2}, [530] = {.lex_state = 2}, - [531] = {.lex_state = 2}, - [532] = {.lex_state = 2}, + [531] = {.lex_state = 6}, + [532] = {.lex_state = 6}, [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}, + [537] = {.lex_state = 6}, + [538] = {.lex_state = 6}, + [539] = {.lex_state = 6}, + [540] = {.lex_state = 7}, + [541] = {.lex_state = 0}, [542] = {.lex_state = 7}, [543] = {.lex_state = 7}, [544] = {.lex_state = 7}, @@ -6889,50 +6890,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 7}, [550] = {.lex_state = 7}, [551] = {.lex_state = 7}, - [552] = {.lex_state = 7}, - [553] = {.lex_state = 7}, + [552] = {.lex_state = 0}, + [553] = {.lex_state = 6}, [554] = {.lex_state = 6}, [555] = {.lex_state = 7}, - [556] = {.lex_state = 6}, - [557] = {.lex_state = 7}, + [556] = {.lex_state = 7}, + [557] = {.lex_state = 6}, [558] = {.lex_state = 7}, [559] = {.lex_state = 7}, - [560] = {.lex_state = 7}, - [561] = {.lex_state = 7}, + [560] = {.lex_state = 6}, + [561] = {.lex_state = 6}, [562] = {.lex_state = 7}, - [563] = {.lex_state = 6}, - [564] = {.lex_state = 7}, - [565] = {.lex_state = 6}, - [566] = {.lex_state = 6}, + [563] = {.lex_state = 7}, + [564] = {.lex_state = 6}, + [565] = {.lex_state = 7}, + [566] = {.lex_state = 7}, [567] = {.lex_state = 6}, - [568] = {.lex_state = 6}, + [568] = {.lex_state = 7}, [569] = {.lex_state = 7}, - [570] = {.lex_state = 7}, + [570] = {.lex_state = 6}, [571] = {.lex_state = 7}, [572] = {.lex_state = 7}, [573] = {.lex_state = 7}, [574] = {.lex_state = 7}, - [575] = {.lex_state = 6}, + [575] = {.lex_state = 7}, [576] = {.lex_state = 7}, - [577] = {.lex_state = 7}, + [577] = {.lex_state = 0}, [578] = {.lex_state = 7}, - [579] = {.lex_state = 0}, + [579] = {.lex_state = 7}, [580] = {.lex_state = 7}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 6}, - [583] = {.lex_state = 0}, + [581] = {.lex_state = 6}, + [582] = {.lex_state = 7}, + [583] = {.lex_state = 6}, [584] = {.lex_state = 7}, - [585] = {.lex_state = 6}, - [586] = {.lex_state = 6}, + [585] = {.lex_state = 7}, + [586] = {.lex_state = 7}, [587] = {.lex_state = 6}, - [588] = {.lex_state = 7}, + [588] = {.lex_state = 0}, [589] = {.lex_state = 6}, [590] = {.lex_state = 7}, - [591] = {.lex_state = 7}, + [591] = {.lex_state = 6}, [592] = {.lex_state = 6}, - [593] = {.lex_state = 0}, - [594] = {.lex_state = 0}, - [595] = {.lex_state = 6}, + [593] = {.lex_state = 6}, + [594] = {.lex_state = 6}, + [595] = {.lex_state = 0}, [596] = {.lex_state = 6}, [597] = {.lex_state = 6}, [598] = {.lex_state = 6}, @@ -6941,7 +6942,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [601] = {.lex_state = 6}, [602] = {.lex_state = 6}, [603] = {.lex_state = 6}, - [604] = {.lex_state = 6}, + [604] = {.lex_state = 0}, [605] = {.lex_state = 6}, [606] = {.lex_state = 6}, [607] = {.lex_state = 6}, @@ -6951,21 +6952,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [611] = {.lex_state = 6}, [612] = {.lex_state = 6}, [613] = {.lex_state = 6}, - [614] = {.lex_state = 0}, - [615] = {.lex_state = 6}, + [614] = {.lex_state = 6}, + [615] = {.lex_state = 0}, [616] = {.lex_state = 6}, [617] = {.lex_state = 0}, - [618] = {.lex_state = 0}, + [618] = {.lex_state = 6}, [619] = {.lex_state = 6}, [620] = {.lex_state = 6}, - [621] = {.lex_state = 6}, + [621] = {.lex_state = 0}, [622] = {.lex_state = 6}, - [623] = {.lex_state = 0}, - [624] = {.lex_state = 6}, + [623] = {.lex_state = 6}, + [624] = {.lex_state = 0}, [625] = {.lex_state = 6}, [626] = {.lex_state = 6}, [627] = {.lex_state = 6}, - [628] = {.lex_state = 56}, + [628] = {.lex_state = 6}, [629] = {.lex_state = 6}, [630] = {.lex_state = 6}, [631] = {.lex_state = 6}, @@ -6973,33 +6974,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [633] = {.lex_state = 6}, [634] = {.lex_state = 6}, [635] = {.lex_state = 6}, - [636] = {.lex_state = 6}, + [636] = {.lex_state = 0}, [637] = {.lex_state = 6}, - [638] = {.lex_state = 0}, + [638] = {.lex_state = 6}, [639] = {.lex_state = 6}, [640] = {.lex_state = 6}, - [641] = {.lex_state = 0}, + [641] = {.lex_state = 6}, [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}, + [647] = {.lex_state = 6}, + [648] = {.lex_state = 0}, + [649] = {.lex_state = 0}, [650] = {.lex_state = 6}, [651] = {.lex_state = 6}, [652] = {.lex_state = 6}, [653] = {.lex_state = 6}, [654] = {.lex_state = 6}, - [655] = {.lex_state = 6}, + [655] = {.lex_state = 56}, [656] = {.lex_state = 6}, [657] = {.lex_state = 6}, [658] = {.lex_state = 6}, [659] = {.lex_state = 0}, - [660] = {.lex_state = 6}, + [660] = {.lex_state = 0}, [661] = {.lex_state = 0}, - [662] = {.lex_state = 0}, + [662] = {.lex_state = 6}, [663] = {.lex_state = 0}, [664] = {.lex_state = 0}, [665] = {.lex_state = 0}, @@ -7112,26 +7113,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [772] = {.lex_state = 0}, [773] = {.lex_state = 0}, [774] = {.lex_state = 0}, - [775] = {.lex_state = 56}, + [775] = {.lex_state = 0}, [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 56}, + [777] = {.lex_state = 56}, + [778] = {.lex_state = 58}, [779] = {.lex_state = 58}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 58}, + [780] = {.lex_state = 58}, + [781] = {.lex_state = 0}, [782] = {.lex_state = 0}, - [783] = {.lex_state = 0}, + [783] = {.lex_state = 56}, [784] = {.lex_state = 58}, - [785] = {.lex_state = 58}, + [785] = {.lex_state = 0}, [786] = {.lex_state = 0}, [787] = {.lex_state = 56}, [788] = {.lex_state = 56}, - [789] = {.lex_state = 0}, + [789] = {.lex_state = 56}, [790] = {.lex_state = 56}, [791] = {.lex_state = 56}, - [792] = {.lex_state = 56}, + [792] = {.lex_state = 0}, [793] = {.lex_state = 56}, - [794] = {.lex_state = 0}, + [794] = {.lex_state = 56}, [795] = {.lex_state = 56}, [796] = {.lex_state = 56}, [797] = {.lex_state = 56}, @@ -7140,17 +7141,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [800] = {.lex_state = 56}, [801] = {.lex_state = 56}, [802] = {.lex_state = 56}, - [803] = {.lex_state = 56}, + [803] = {.lex_state = 0}, [804] = {.lex_state = 56}, [805] = {.lex_state = 56}, - [806] = {.lex_state = 0}, + [806] = {.lex_state = 56}, [807] = {.lex_state = 56}, [808] = {.lex_state = 56}, [809] = {.lex_state = 56}, [810] = {.lex_state = 56}, [811] = {.lex_state = 56}, [812] = {.lex_state = 56}, - [813] = {.lex_state = 56}, + [813] = {.lex_state = 0}, [814] = {.lex_state = 56}, [815] = {.lex_state = 56}, [816] = {.lex_state = 0}, @@ -7158,19 +7159,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [818] = {.lex_state = 0}, [819] = {.lex_state = 0}, [820] = {.lex_state = 0}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 56}, + [821] = {.lex_state = 56}, + [822] = {.lex_state = 0}, [823] = {.lex_state = 0}, [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, - [827] = {.lex_state = 56}, + [827] = {.lex_state = 0}, [828] = {.lex_state = 0}, [829] = {.lex_state = 0}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 0}, + [830] = {.lex_state = 56}, + [831] = {.lex_state = 56}, [832] = {.lex_state = 0}, - [833] = {.lex_state = 56}, + [833] = {.lex_state = 0}, [834] = {.lex_state = 0}, [835] = {.lex_state = 56}, [836] = {.lex_state = 0}, @@ -7182,200 +7183,200 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 0}, + [845] = {.lex_state = 56}, + [846] = {.lex_state = 56}, [847] = {.lex_state = 0}, - [848] = {.lex_state = 56}, - [849] = {.lex_state = 56}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 58}, [850] = {.lex_state = 0}, [851] = {.lex_state = 0}, [852] = {.lex_state = 0}, [853] = {.lex_state = 0}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, + [856] = {.lex_state = 56}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, - [859] = {.lex_state = 56}, + [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, [861] = {.lex_state = 56}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 0}, + [862] = {.lex_state = 56}, + [863] = {.lex_state = 56}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 56}, - [866] = {.lex_state = 56}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 56}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 56}, + [868] = {.lex_state = 0}, [869] = {.lex_state = 56}, - [870] = {.lex_state = 56}, + [870] = {.lex_state = 0}, [871] = {.lex_state = 0}, [872] = {.lex_state = 56}, [873] = {.lex_state = 56}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 56}, + [874] = {.lex_state = 56}, + [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, [877] = {.lex_state = 56}, [878] = {.lex_state = 56}, - [879] = {.lex_state = 58}, - [880] = {.lex_state = 56}, + [879] = {.lex_state = 56}, + [880] = {.lex_state = 0}, [881] = {.lex_state = 56}, - [882] = {.lex_state = 0}, + [882] = {.lex_state = 56}, [883] = {.lex_state = 56}, [884] = {.lex_state = 0}, [885] = {.lex_state = 56}, [886] = {.lex_state = 56}, [887] = {.lex_state = 56}, - [888] = {.lex_state = 56}, + [888] = {.lex_state = 0}, [889] = {.lex_state = 56}, - [890] = {.lex_state = 0}, + [890] = {.lex_state = 56}, [891] = {.lex_state = 56}, [892] = {.lex_state = 56}, [893] = {.lex_state = 56}, [894] = {.lex_state = 56}, - [895] = {.lex_state = 0}, + [895] = {.lex_state = 56}, [896] = {.lex_state = 56}, - [897] = {.lex_state = 0}, + [897] = {.lex_state = 56}, [898] = {.lex_state = 56}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 56}, + [900] = {.lex_state = 0}, [901] = {.lex_state = 56}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, + [902] = {.lex_state = 56}, + [903] = {.lex_state = 56}, [904] = {.lex_state = 56}, [905] = {.lex_state = 56}, [906] = {.lex_state = 56}, [907] = {.lex_state = 56}, [908] = {.lex_state = 56}, - [909] = {.lex_state = 56}, - [910] = {.lex_state = 56}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 0}, [911] = {.lex_state = 56}, - [912] = {.lex_state = 56}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 56}, - [916] = {.lex_state = 0}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 56}, + [914] = {.lex_state = 56}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 56}, [917] = {.lex_state = 56}, - [918] = {.lex_state = 56}, + [918] = {.lex_state = 0}, [919] = {.lex_state = 56}, [920] = {.lex_state = 56}, - [921] = {.lex_state = 56}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 56}, [923] = {.lex_state = 56}, [924] = {.lex_state = 0}, [925] = {.lex_state = 56}, [926] = {.lex_state = 56}, - [927] = {.lex_state = 56}, + [927] = {.lex_state = 0}, [928] = {.lex_state = 56}, - [929] = {.lex_state = 0}, + [929] = {.lex_state = 56}, [930] = {.lex_state = 0}, [931] = {.lex_state = 56}, [932] = {.lex_state = 56}, - [933] = {.lex_state = 56}, + [933] = {.lex_state = 0}, [934] = {.lex_state = 56}, [935] = {.lex_state = 56}, [936] = {.lex_state = 56}, - [937] = {.lex_state = 56}, + [937] = {.lex_state = 0}, [938] = {.lex_state = 56}, [939] = {.lex_state = 56}, [940] = {.lex_state = 56}, [941] = {.lex_state = 56}, [942] = {.lex_state = 56}, [943] = {.lex_state = 56}, - [944] = {.lex_state = 56}, + [944] = {.lex_state = 0}, [945] = {.lex_state = 56}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 56}, + [946] = {.lex_state = 56}, + [947] = {.lex_state = 56}, + [948] = {.lex_state = 56}, + [949] = {.lex_state = 0}, [950] = {.lex_state = 56}, - [951] = {.lex_state = 0}, + [951] = {.lex_state = 56}, [952] = {.lex_state = 56}, [953] = {.lex_state = 56}, [954] = {.lex_state = 3}, - [955] = {.lex_state = 56}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 3}, - [958] = {.lex_state = 56}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 56}, - [961] = {.lex_state = 0}, + [955] = {.lex_state = 3}, + [956] = {.lex_state = 3}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 56}, + [960] = {.lex_state = 0}, + [961] = {.lex_state = 56}, [962] = {.lex_state = 0}, - [963] = {.lex_state = 3}, + [963] = {.lex_state = 0}, [964] = {.lex_state = 56}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 56}, + [965] = {.lex_state = 56}, + [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 56}, + [968] = {.lex_state = 3}, [969] = {.lex_state = 0}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 56}, + [971] = {.lex_state = 3}, [972] = {.lex_state = 3}, [973] = {.lex_state = 3}, [974] = {.lex_state = 0}, [975] = {.lex_state = 3}, - [976] = {.lex_state = 56}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 56}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 3}, - [981] = {.lex_state = 3}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 56}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 56}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0}, [982] = {.lex_state = 56}, [983] = {.lex_state = 56}, - [984] = {.lex_state = 0}, + [984] = {.lex_state = 56}, [985] = {.lex_state = 56}, [986] = {.lex_state = 0}, - [987] = {.lex_state = 56}, + [987] = {.lex_state = 0}, [988] = {.lex_state = 56}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 56}, + [989] = {.lex_state = 56}, + [990] = {.lex_state = 56}, + [991] = {.lex_state = 3}, + [992] = {.lex_state = 3}, [993] = {.lex_state = 56}, [994] = {.lex_state = 0}, - [995] = {.lex_state = 3}, + [995] = {.lex_state = 56}, [996] = {.lex_state = 56}, - [997] = {.lex_state = 0}, + [997] = {.lex_state = 3}, [998] = {.lex_state = 3}, - [999] = {.lex_state = 3}, - [1000] = {.lex_state = 3}, - [1001] = {.lex_state = 56}, - [1002] = {.lex_state = 3}, - [1003] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 3}, + [1002] = {.lex_state = 56}, + [1003] = {.lex_state = 56}, [1004] = {.lex_state = 56}, [1005] = {.lex_state = 56}, - [1006] = {.lex_state = 0}, + [1006] = {.lex_state = 3}, [1007] = {.lex_state = 3}, - [1008] = {.lex_state = 3}, - [1009] = {.lex_state = 58}, - [1010] = {.lex_state = 56}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 58}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, + [1013] = {.lex_state = 56}, [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 58}, - [1017] = {.lex_state = 58}, + [1015] = {.lex_state = 56}, + [1016] = {.lex_state = 56}, + [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, + [1019] = {.lex_state = 56}, [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, + [1021] = {.lex_state = 56}, [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, + [1025] = {.lex_state = 56}, + [1026] = {.lex_state = 56}, [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 56}, + [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, + [1030] = {.lex_state = 56}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 56}, - [1034] = {.lex_state = 56}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 56}, - [1038] = {.lex_state = 0}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 56}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, [1041] = {.lex_state = 56}, @@ -7387,21 +7388,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, + [1050] = {.lex_state = 56}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, + [1054] = {.lex_state = 56}, + [1055] = {.lex_state = 56}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 0}, + [1061] = {.lex_state = 58}, + [1062] = {.lex_state = 58}, [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, + [1064] = {.lex_state = 58}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, @@ -7414,8 +7415,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 56}, - [1078] = {.lex_state = 56}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, [1081] = {.lex_state = 0}, @@ -7427,15 +7428,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 56}, + [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 58}, + [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 56}, - [1098] = {.lex_state = 56}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, @@ -7446,9 +7447,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 56}, + [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 56}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, @@ -7459,7 +7460,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, + [1122] = {.lex_state = 56}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, @@ -7468,31 +7469,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 56}, - [1132] = {.lex_state = 56}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0}, [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 56}, - [1140] = {.lex_state = 56}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 56}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 58}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 56}, + [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 56}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, + [1149] = {.lex_state = 56}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, + [1152] = {.lex_state = 56}, + [1153] = {.lex_state = 56}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 56}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, @@ -7505,17 +7506,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 56}, + [1168] = {.lex_state = 58}, + [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, + [1172] = {.lex_state = 56}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 56}, + [1177] = {.lex_state = 56}, + [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, @@ -7606,6 +7607,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7703,65 +7705,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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), - [aux_sym_source_file_repeat1] = STATE(2), + [sym_source_file] = STATE(1235), + [sym_package_clause] = STATE(291), + [sym_import_declaration] = STATE(291), + [sym__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_function_declaration] = STATE(291), + [sym_method_declaration] = STATE(291), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(1152), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), + [aux_sym_source_file_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -7811,65 +7813,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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_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), - [aux_sym_source_file_repeat1] = STATE(3), + [sym_package_clause] = STATE(291), + [sym_import_declaration] = STATE(291), + [sym__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_function_declaration] = STATE(291), + [sym_method_declaration] = STATE(291), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(1152), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), + [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(78), + [anon_sym_package] = ACTIONS(81), + [anon_sym_import] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_const] = ACTIONS(90), + [anon_sym_var] = ACTIONS(93), + [anon_sym_func] = ACTIONS(96), + [anon_sym_LBRACK] = ACTIONS(99), + [anon_sym_type] = ACTIONS(102), + [anon_sym_STAR] = ACTIONS(105), + [anon_sym_struct] = ACTIONS(108), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_interface] = ACTIONS(114), + [anon_sym_map] = ACTIONS(117), + [anon_sym_chan] = ACTIONS(120), + [anon_sym_LT_DASH] = ACTIONS(123), + [anon_sym_fallthrough] = ACTIONS(126), + [anon_sym_break] = ACTIONS(129), + [anon_sym_continue] = ACTIONS(132), + [anon_sym_goto] = ACTIONS(135), + [anon_sym_return] = ACTIONS(138), + [anon_sym_go] = ACTIONS(141), + [anon_sym_defer] = ACTIONS(144), + [anon_sym_if] = ACTIONS(147), + [anon_sym_for] = ACTIONS(150), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_select] = ACTIONS(156), + [anon_sym_new] = ACTIONS(159), + [anon_sym_make] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_BANG] = ACTIONS(162), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(162), + [sym_raw_string_literal] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(168), + [sym_int_literal] = ACTIONS(171), + [sym_float_literal] = ACTIONS(171), + [sym_imaginary_literal] = ACTIONS(165), + [sym_rune_literal] = ACTIONS(165), + [sym_nil] = ACTIONS(171), + [sym_true] = ACTIONS(171), + [sym_false] = ACTIONS(171), + [sym_iota] = ACTIONS(171), + [sym_comment] = ACTIONS(3), + }, + [3] = { + [sym_package_clause] = STATE(291), + [sym_import_declaration] = STATE(291), + [sym__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_function_declaration] = STATE(291), + [sym_method_declaration] = STATE(291), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(1152), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), + [aux_sym_source_file_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(174), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -7917,169 +8026,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iota] = ACTIONS(71), [sym_comment] = ACTIONS(3), }, - [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_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), - [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), - }, [4] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1063), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8129,61 +8131,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1060), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8233,61 +8235,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), - [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1095), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8337,61 +8339,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), - [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(1242), - [sym__simple_type] = STATE(1242), - [sym_generic_type] = STATE(1014), - [sym_pointer_type] = STATE(816), - [sym_array_type] = STATE(1014), - [sym_implicit_length_array_type] = STATE(1137), - [sym_slice_type] = STATE(1014), - [sym_struct_type] = STATE(1014), - [sym_interface_type] = STATE(816), - [sym_map_type] = STATE(1014), - [sym_channel_type] = STATE(816), - [sym_function_type] = STATE(816), - [sym_block] = STATE(896), - [sym__statement_list] = STATE(1024), - [sym__statement] = STATE(849), - [sym_empty_statement] = STATE(896), - [sym__simple_statement] = STATE(896), - [sym_send_statement] = STATE(900), - [sym_inc_statement] = STATE(900), - [sym_dec_statement] = STATE(900), - [sym_assignment_statement] = STATE(900), - [sym_short_var_declaration] = STATE(900), - [sym_labeled_statement] = STATE(896), - [sym_empty_labeled_statement] = STATE(1024), - [sym_fallthrough_statement] = STATE(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1031), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8441,61 +8443,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), - [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1023), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8545,60 +8547,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), - [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(907), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1048), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8648,60 +8650,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym__declaration] = STATE(896), - [sym_const_declaration] = STATE(896), - [sym_var_declaration] = STATE(896), - [sym_type_declaration] = STATE(896), - [sym_expression_list] = STATE(767), - [sym_parenthesized_type] = STATE(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(907), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1059), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8751,61 +8753,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1191), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8853,61 +8855,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1206), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -8955,60 +8957,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [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] = 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), + [sym__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1214), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), + [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_const] = ACTIONS(17), @@ -9034,8 +9038,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -9057,61 +9059,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1230), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -9123,7 +9125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_struct] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_interface] = ACTIONS(33), [anon_sym_map] = ACTIONS(35), [anon_sym_chan] = ACTIONS(37), @@ -9159,61 +9161,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1205), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -9225,7 +9227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_struct] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(216), [anon_sym_interface] = ACTIONS(33), [anon_sym_map] = ACTIONS(35), [anon_sym_chan] = ACTIONS(37), @@ -9261,62 +9263,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [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(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), + [sym__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(948), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), + [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_const] = ACTIONS(17), @@ -9327,7 +9327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_struct] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_RBRACE] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(218), [anon_sym_interface] = ACTIONS(33), [anon_sym_map] = ACTIONS(35), [anon_sym_chan] = ACTIONS(37), @@ -9342,6 +9342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(55), [anon_sym_for] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(220), + [anon_sym_default] = ACTIONS(220), [anon_sym_select] = ACTIONS(61), [anon_sym_new] = ACTIONS(63), [anon_sym_make] = ACTIONS(63), @@ -9363,61 +9365,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [17] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1201), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -9465,61 +9467,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [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(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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym_statement_list] = STATE(1259), + [sym__statement] = STATE(872), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_empty_labeled_statement] = STATE(1101), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(176), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -9567,59 +9569,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [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] = 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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(948), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -9666,59 +9668,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [20] = { - [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] = 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__declaration] = STATE(901), + [sym_const_declaration] = STATE(901), + [sym_var_declaration] = STATE(901), + [sym_type_declaration] = STATE(901), + [sym_expression_list] = STATE(770), + [sym_parenthesized_type] = STATE(1226), + [sym__simple_type] = STATE(1226), + [sym_generic_type] = STATE(1047), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1047), + [sym_implicit_length_array_type] = STATE(1151), + [sym_slice_type] = STATE(1047), + [sym_struct_type] = STATE(1047), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1047), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(901), + [sym__statement] = STATE(907), + [sym_empty_statement] = STATE(901), + [sym__simple_statement] = STATE(901), + [sym_send_statement] = STATE(905), + [sym_inc_statement] = STATE(905), + [sym_dec_statement] = STATE(905), + [sym_assignment_statement] = STATE(905), + [sym_short_var_declaration] = STATE(905), + [sym_labeled_statement] = STATE(901), + [sym_fallthrough_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_go_statement] = STATE(901), + [sym_defer_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_expression_switch_statement] = STATE(901), + [sym_type_switch_statement] = STATE(901), + [sym_select_statement] = STATE(901), + [sym__expression] = STATE(264), + [sym_parenthesized_expression] = STATE(331), + [sym_call_expression] = STATE(331), + [sym_selector_expression] = STATE(331), + [sym_index_expression] = STATE(331), + [sym_slice_expression] = STATE(331), + [sym_type_assertion_expression] = STATE(331), + [sym_type_conversion_expression] = STATE(331), + [sym_composite_literal] = STATE(331), + [sym_func_literal] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_qualified_type] = STATE(910), + [sym_interpreted_string_literal] = STATE(331), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), @@ -9765,29 +9767,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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] = STATE(302), + [sym_expression_list] = STATE(765), + [sym_parenthesized_type] = STATE(1266), + [sym__simple_type] = STATE(1266), + [sym_generic_type] = STATE(1009), + [sym_pointer_type] = STATE(824), + [sym_array_type] = STATE(1009), + [sym_implicit_length_array_type] = STATE(1176), + [sym_slice_type] = STATE(1009), + [sym_struct_type] = STATE(1009), + [sym_interface_type] = STATE(824), + [sym_map_type] = STATE(1009), + [sym_channel_type] = STATE(824), + [sym_function_type] = STATE(824), + [sym_block] = STATE(931), + [sym__simple_statement] = STATE(1199), + [sym_send_statement] = STATE(1180), + [sym_inc_statement] = STATE(1180), + [sym_dec_statement] = STATE(1180), + [sym_assignment_statement] = STATE(1180), + [sym_short_var_declaration] = STATE(1180), + [sym_for_clause] = STATE(1179), + [sym_range_clause] = STATE(1179), + [sym__expression] = STATE(304), [sym_parenthesized_expression] = STATE(362), [sym_call_expression] = STATE(362), [sym_selector_expression] = STATE(362), @@ -9799,7 +9801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_func_literal] = STATE(362), [sym_unary_expression] = STATE(362), [sym_binary_expression] = STATE(362), - [sym_qualified_type] = STATE(947), + [sym_qualified_type] = STATE(927), [sym_interpreted_string_literal] = STATE(362), [sym_identifier] = ACTIONS(226), [anon_sym_SEMI] = ACTIONS(228), @@ -9863,29 +9865,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(250), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(315), 1, sym__expression, - STATE(765), 1, + STATE(771), 1, sym_expression_list, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, - STATE(1193), 1, - sym__type_switch_header, - STATE(1194), 1, + STATE(1192), 1, sym__simple_statement, + STATE(1194), 1, + sym__type_switch_header, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -9896,13 +9898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, + STATE(1180), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, @@ -9955,27 +9957,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(252), 1, anon_sym_LBRACE, - STATE(343), 1, + STATE(345), 1, sym__expression, - STATE(766), 1, + STATE(768), 1, sym_expression_list, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, - STATE(1199), 1, + STATE(1255), 1, sym__simple_statement, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -9986,13 +9988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, + STATE(1180), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, @@ -10045,27 +10047,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(254), 1, anon_sym_LBRACE, - STATE(343), 1, + STATE(345), 1, sym__expression, - STATE(766), 1, + STATE(768), 1, sym_expression_list, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, - STATE(1205), 1, + STATE(1238), 1, sym__simple_statement, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -10076,13 +10078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, + STATE(1180), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, @@ -10135,27 +10137,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(256), 1, anon_sym_LBRACE, - STATE(343), 1, + STATE(345), 1, sym__expression, - STATE(766), 1, + STATE(768), 1, sym_expression_list, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, - STATE(1211), 1, + STATE(1184), 1, sym__simple_statement, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -10166,13 +10168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, + STATE(1180), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, @@ -10225,27 +10227,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(258), 1, anon_sym_LBRACE, - STATE(343), 1, + STATE(345), 1, sym__expression, - STATE(766), 1, + STATE(768), 1, sym_expression_list, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, - STATE(1216), 1, + STATE(1182), 1, sym__simple_statement, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -10256,13 +10258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - STATE(1143), 5, + STATE(1180), 5, sym_send_statement, sym_inc_statement, sym_dec_statement, @@ -10288,87 +10290,95 @@ 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, + [588] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(272), 1, - anon_sym_STAR, - ACTIONS(274), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(278), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(284), 1, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_LPAREN, + ACTIONS(232), 1, + anon_sym_func, + ACTIONS(234), 1, + anon_sym_STAR, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(286), 1, - sym_comment, - STATE(241), 1, + ACTIONS(246), 1, + anon_sym_DQUOTE, + STATE(305), 1, + sym__expression, + STATE(769), 1, + sym_expression_list, + STATE(927), 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, + STATE(1176), 1, + sym_implicit_length_array_type, + STATE(1218), 1, + sym__simple_statement, + ACTIONS(240), 2, + anon_sym_new, + anon_sym_make, + STATE(1266), 2, + sym_parenthesized_type, sym__simple_type, - STATE(253), 9, - sym_generic_type, + ACTIONS(244), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 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(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, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, + STATE(1009), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + STATE(1180), 5, + sym_send_statement, + sym_inc_statement, + sym_dec_statement, + sym_assignment_statement, + sym_short_var_declaration, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - [686] = 18, + STATE(362), 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, + [702] = 18, ACTIONS(262), 1, sym_identifier, ACTIONS(266), 1, @@ -10393,17 +10403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(286), 1, sym_comment, - STATE(241), 1, + STATE(242), 1, sym_qualified_type, - STATE(252), 1, + STATE(288), 1, sym_block, - ACTIONS(288), 2, + ACTIONS(260), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(239), 2, + STATE(240), 2, sym_parameter_list, sym__simple_type, - STATE(253), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -10413,7 +10423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - ACTIONS(290), 34, + ACTIONS(264), 34, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -10448,95 +10458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [784] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(230), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - anon_sym_func, - ACTIONS(234), 1, - anon_sym_STAR, - ACTIONS(236), 1, - anon_sym_LT_DASH, - ACTIONS(246), 1, - anon_sym_DQUOTE, - STATE(305), 1, - sym__expression, - STATE(768), 1, - sym_expression_list, - STATE(947), 1, - sym_qualified_type, - STATE(1159), 1, - sym_implicit_length_array_type, - STATE(1202), 1, - sym__simple_statement, - ACTIONS(240), 2, - anon_sym_new, - anon_sym_make, - STATE(1265), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(244), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(816), 4, - sym_pointer_type, - sym_interface_type, - sym_channel_type, - sym_function_type, - ACTIONS(242), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - STATE(1073), 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, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - STATE(362), 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, - [898] = 18, + [800] = 18, ACTIONS(262), 1, sym_identifier, ACTIONS(266), 1, @@ -10561,17 +10483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(286), 1, sym_comment, - STATE(241), 1, + STATE(242), 1, sym_qualified_type, - STATE(279), 1, + STATE(253), 1, sym_block, - ACTIONS(292), 2, + ACTIONS(288), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(242), 2, + STATE(238), 2, sym_parameter_list, sym__simple_type, - STATE(253), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -10581,7 +10503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - ACTIONS(294), 34, + ACTIONS(290), 34, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -10616,101 +10538,87 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [996] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(296), 1, + [898] = 18, + ACTIONS(262), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(266), 1, anon_sym_LPAREN, - ACTIONS(300), 1, - anon_sym_COMMA, - ACTIONS(302), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(270), 1, + anon_sym_LBRACK, + ACTIONS(272), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(308), 1, - anon_sym_RBRACE, - ACTIONS(310), 1, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, + anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, + ACTIONS(284), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(589), 1, - sym__expression, - STATE(794), 1, + ACTIONS(286), 1, + sym_comment, + STATE(242), 1, sym_qualified_type, - STATE(967), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1092), 1, - sym_keyed_element, - STATE(1138), 1, - sym_implicit_length_array_type, - ACTIONS(312), 2, - anon_sym_new, - anon_sym_make, - STATE(1261), 2, - sym_parenthesized_type, + STATE(267), 1, + sym_block, + ACTIONS(292), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(237), 2, + sym_parameter_list, sym__simple_type, - ACTIONS(316), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(816), 4, + STATE(289), 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(314), 5, + 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, - STATE(867), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(320), 6, + sym_raw_string_literal, + anon_sym_DQUOTE, sym_int_literal, sym_float_literal, + sym_imaginary_literal, + sym_rune_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(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, - [1115] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, + [996] = 25, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -10719,47 +10627,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(286), 1, + sym_comment, ACTIONS(296), 1, sym_identifier, ACTIONS(298), 1, - anon_sym_LPAREN, + anon_sym_LF, ACTIONS(302), 1, - anon_sym_func, + anon_sym_LPAREN, ACTIONS(304), 1, - anon_sym_STAR, + anon_sym_func, ACTIONS(306), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(308), 1, + anon_sym_STAR, ACTIONS(310), 1, anon_sym_LT_DASH, ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(322), 1, - anon_sym_COMMA, - ACTIONS(324), 1, - anon_sym_RBRACE, - STATE(589), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(986), 1, - sym_literal_element, - STATE(1069), 1, - sym_literal_value, - STATE(1102), 1, - sym_keyed_element, - STATE(1138), 1, + STATE(941), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(816), 4, + ACTIONS(300), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -10770,20 +10675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 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(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10796,7 +10704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1234] = 29, + [1107] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -10809,71 +10717,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(324), 1, + anon_sym_COMMA, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(332), 1, + anon_sym_RBRACE, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(326), 1, - anon_sym_COMMA, - ACTIONS(328), 1, - anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, STATE(994), 1, sym_literal_element, - STATE(1059), 1, + STATE(1040), 1, sym_keyed_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10886,7 +10794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1353] = 29, + [1226] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -10899,71 +10807,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(330), 1, + ACTIONS(346), 1, anon_sym_COMMA, - ACTIONS(332), 1, + ACTIONS(348), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(961), 1, + STATE(966), 1, sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1076), 1, + STATE(1093), 1, sym_keyed_element, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -10976,7 +10884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1472] = 29, + [1345] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -10989,71 +10897,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(334), 1, + ACTIONS(350), 1, anon_sym_COMMA, - ACTIONS(336), 1, + ACTIONS(352), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(990), 1, + STATE(974), 1, sym_literal_element, - STATE(1035), 1, - sym_keyed_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, + STATE(1076), 1, + sym_keyed_element, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11066,7 +10974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1591] = 29, + [1464] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -11079,71 +10987,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(338), 1, + ACTIONS(354), 1, anon_sym_COMMA, - ACTIONS(340), 1, + ACTIONS(356), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(956), 1, + STATE(957), 1, sym_literal_element, - STATE(1067), 1, - sym_keyed_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, + STATE(1111), 1, + sym_keyed_element, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11156,7 +11064,11 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1710] = 25, + [1583] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -11165,71 +11077,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(286), 1, - sym_comment, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(344), 1, - anon_sym_LF, - ACTIONS(348), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(350), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(352), 1, - anon_sym_LBRACK, - ACTIONS(354), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(356), 1, + ACTIONS(330), 1, + anon_sym_LBRACE, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(364), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(358), 1, + anon_sym_COMMA, + ACTIONS(360), 1, + anon_sym_RBRACE, + STATE(557), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(931), 1, - sym_expression_list, - STATE(1116), 1, + STATE(962), 1, + sym_literal_element, + STATE(1042), 1, + sym_literal_value, + STATE(1104), 1, + sym_keyed_element, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 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(340), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(360), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 9, - sym_raw_string_literal, + ACTIONS(344), 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(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11242,38 +11154,38 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [1821] = 16, + [1702] = 16, ACTIONS(286), 1, sym_comment, - ACTIONS(368), 1, + ACTIONS(364), 1, sym_identifier, - ACTIONS(373), 1, + ACTIONS(369), 1, anon_sym_LPAREN, - ACTIONS(376), 1, + ACTIONS(372), 1, anon_sym_func, - ACTIONS(379), 1, + ACTIONS(375), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(378), 1, anon_sym_STAR, - ACTIONS(385), 1, + ACTIONS(381), 1, anon_sym_struct, - ACTIONS(388), 1, + ACTIONS(384), 1, anon_sym_interface, - ACTIONS(391), 1, + ACTIONS(387), 1, anon_sym_map, - ACTIONS(394), 1, + ACTIONS(390), 1, anon_sym_chan, - ACTIONS(397), 1, + ACTIONS(393), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(242), 1, sym_qualified_type, - ACTIONS(366), 2, + ACTIONS(362), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(262), 2, + STATE(266), 2, sym_parameter_list, sym__simple_type, - STATE(253), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -11283,7 +11195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - ACTIONS(371), 35, + ACTIONS(367), 35, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -11319,7 +11231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [1914] = 28, + [1795] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -11332,69 +11244,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(396), 1, + anon_sym_COMMA, + ACTIONS(398), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, + STATE(1000), 1, sym_literal_element, - STATE(1069), 1, + STATE(1036), 1, + sym_keyed_element, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1177), 1, + ACTIONS(336), 2, + anon_sym_new, + anon_sym_make, + STATE(1262), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(340), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(338), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(871), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(344), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(449), 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, + [1914] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, + anon_sym_STAR, + ACTIONS(330), 1, + anon_sym_LBRACE, + ACTIONS(334), 1, + anon_sym_LT_DASH, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(400), 1, + anon_sym_RBRACE, + STATE(557), 1, + sym__expression, + STATE(813), 1, + sym_qualified_type, + STATE(1042), 1, + sym_literal_value, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11420,69 +11422,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(402), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11508,69 +11510,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(404), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11596,69 +11598,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(406), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11684,69 +11686,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(408), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11772,69 +11774,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(410), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11860,69 +11862,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(412), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -11948,69 +11950,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(414), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12036,69 +12038,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(416), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12124,69 +12126,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(418), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12212,69 +12214,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(420), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12300,69 +12302,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(422), 1, anon_sym_RBRACE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12388,67 +12390,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1053), 1, - sym_literal_element, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1177), 1, + STATE(1084), 1, + sym_literal_element, + STATE(1158), 1, sym_keyed_element, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12474,65 +12476,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(589), 1, + STATE(557), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1069), 1, + STATE(1042), 1, sym_literal_value, - STATE(1115), 1, + STATE(1163), 1, sym_literal_element, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12570,28 +12572,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(474), 1, + STATE(478), 1, sym__expression, - STATE(884), 1, + STATE(930), 1, sym_qualified_type, - STATE(1160), 1, - sym_implicit_length_array_type, - STATE(1173), 1, + STATE(1133), 1, sym_expression_list, + STATE(1161), 1, + sym_implicit_length_array_type, ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1195), 2, + STATE(1239), 2, sym_send_statement, sym_receive_statement, - STATE(1267), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -12602,7 +12604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, @@ -12615,7 +12617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12641,11 +12643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -12655,25 +12657,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(568), 1, + STATE(531), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1096), 1, sym_variadic_argument, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -12684,20 +12686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12723,63 +12725,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(458), 1, - anon_sym_LBRACE, - ACTIONS(460), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(506), 1, + ACTIONS(454), 1, + anon_sym_RPAREN, + STATE(493), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1112), 1, + sym_variadic_argument, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1192), 1, - sym_expression_list, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12805,11 +12807,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(328), 1, + anon_sym_STAR, + ACTIONS(334), 1, + anon_sym_LT_DASH, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(456), 1, + anon_sym_range, + STATE(538), 1, + sym__expression, + STATE(813), 1, + sym_qualified_type, + STATE(1141), 1, + sym_expression_list, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, + anon_sym_new, + anon_sym_make, + STATE(1262), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(340), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(338), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(871), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(344), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(449), 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, + [3958] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -12817,27 +12901,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(464), 1, + ACTIONS(458), 1, anon_sym_RPAREN, - STATE(514), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1062), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -12848,20 +12932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12874,7 +12958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [3958] = 25, + [4065] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -12887,11 +12971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -12899,27 +12983,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(466), 1, + ACTIONS(460), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1170), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -12930,20 +13014,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -12956,7 +13040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4065] = 25, + [4172] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -12969,11 +13053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -12981,27 +13065,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(468), 1, + ACTIONS(462), 1, anon_sym_RPAREN, - STATE(522), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1068), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13012,20 +13096,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13038,7 +13122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4172] = 25, + [4279] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13051,11 +13135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13063,27 +13147,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(470), 1, + ACTIONS(464), 1, anon_sym_RPAREN, - STATE(494), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1054), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13094,20 +13178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13120,7 +13204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4279] = 25, + [4386] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13133,63 +13217,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(472), 1, - anon_sym_RPAREN, - STATE(568), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(466), 1, + anon_sym_RBRACK, + ACTIONS(468), 1, + anon_sym_DOT_DOT_DOT, + STATE(641), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13202,7 +13286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4386] = 25, + [4493] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13215,11 +13299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13227,27 +13311,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(474), 1, + ACTIONS(470), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1170), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13258,20 +13342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13284,7 +13368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4493] = 25, + [4600] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13297,63 +13381,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(334), 1, + anon_sym_LT_DASH, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(472), 1, sym_identifier, - ACTIONS(448), 1, - anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, + ACTIONS(474), 1, + anon_sym_RBRACK, ACTIONS(476), 1, - anon_sym_RPAREN, - STATE(568), 1, + anon_sym_STAR, + STATE(651), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1034), 1, + sym_parameter_declaration, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1044), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13366,7 +13450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4600] = 25, + [4707] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13379,63 +13463,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(478), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(482), 1, + anon_sym_LBRACE, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(478), 1, - anon_sym_RPAREN, - STATE(568), 1, + STATE(494), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + STATE(1242), 1, + sym_expression_list, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13448,7 +13532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4707] = 25, + [4814] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13461,63 +13545,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(480), 1, - anon_sym_RBRACK, - ACTIONS(482), 1, - anon_sym_DOT_DOT_DOT, - STATE(653), 1, + ACTIONS(456), 1, + anon_sym_range, + STATE(538), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1131), 1, + sym_expression_list, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13530,7 +13614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4814] = 25, + [4921] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13543,11 +13627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13555,27 +13639,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(484), 1, + ACTIONS(488), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(539), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1072), 1, sym_variadic_argument, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13586,20 +13670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13612,7 +13696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [4921] = 25, + [5028] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13625,11 +13709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13637,27 +13721,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(486), 1, + ACTIONS(490), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(537), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1103), 1, sym_variadic_argument, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13668,20 +13752,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13694,7 +13778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5028] = 25, + [5135] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13707,11 +13791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13719,27 +13803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(488), 1, + ACTIONS(492), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1170), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13750,20 +13834,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13776,7 +13860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5135] = 25, + [5242] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13789,63 +13873,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(490), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(492), 1, - anon_sym_RBRACK, - ACTIONS(494), 1, + ACTIONS(448), 1, anon_sym_STAR, - STATE(639), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(494), 1, + anon_sym_RPAREN, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1020), 1, - sym_parameter_declaration, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1112), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13858,7 +13942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5242] = 25, + [5349] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13871,11 +13955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13885,25 +13969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(496), 1, anon_sym_RPAREN, - STATE(535), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1096), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13914,20 +13998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -13940,7 +14024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5349] = 25, + [5456] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -13953,11 +14037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -13967,25 +14051,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(498), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1170), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -13996,20 +14080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14022,7 +14106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5456] = 25, + [5563] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14035,11 +14119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -14049,25 +14133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(500), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(513), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1039), 1, sym_variadic_argument, - ACTIONS(312), 2, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -14078,20 +14162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14104,7 +14188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5563] = 25, + [5670] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14117,11 +14201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -14131,25 +14215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(502), 1, anon_sym_RPAREN, - STATE(568), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, + STATE(1170), 1, sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -14160,20 +14244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14186,7 +14270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5670] = 25, + [5777] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14199,63 +14283,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, ACTIONS(504), 1, - anon_sym_range, - STATE(524), 1, + anon_sym_RPAREN, + STATE(509), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1122), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1056), 1, + sym_variadic_argument, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14268,7 +14352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5777] = 25, + [5884] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14281,11 +14365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -14295,25 +14379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(506), 1, anon_sym_RPAREN, - STATE(518), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1038), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -14324,20 +14408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14350,7 +14434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5884] = 25, + [5991] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14363,63 +14447,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(504), 1, - anon_sym_range, - STATE(524), 1, + ACTIONS(508), 1, + anon_sym_RPAREN, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1130), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14432,7 +14516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [5991] = 25, + [6098] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14445,63 +14529,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(508), 1, - anon_sym_RPAREN, - STATE(511), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + STATE(564), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1095), 1, - sym_variadic_argument, - STATE(1138), 1, + STATE(1141), 1, + sym_expression_list, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14514,7 +14596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6098] = 24, + [6202] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14527,61 +14609,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, + ACTIONS(476), 1, anon_sym_STAR, ACTIONS(510), 1, sym_identifier, ACTIONS(512), 1, anon_sym_COLON, - STATE(605), 1, + STATE(625), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(987), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14594,7 +14676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6202] = 24, + [6306] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14607,61 +14689,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(524), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(514), 1, + anon_sym_COLON, + STATE(610), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1122), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(987), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14674,7 +14756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6306] = 24, + [6410] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14687,61 +14769,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(334), 1, + anon_sym_LT_DASH, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(510), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(516), 1, + anon_sym_RBRACK, + STATE(633), 1, + sym__expression, + STATE(813), 1, + sym_qualified_type, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, + anon_sym_new, + anon_sym_make, + STATE(987), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(340), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 4, + sym_pointer_type, + sym_interface_type, + sym_channel_type, + sym_function_type, + ACTIONS(338), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + STATE(871), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(344), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(449), 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, + [6514] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - STATE(556), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1130), 1, + STATE(889), 1, sym_expression_list, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14754,7 +14916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6410] = 24, + [6618] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14769,59 +14931,59 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(514), 1, - anon_sym_RBRACK, - STATE(648), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(890), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14834,7 +14996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6514] = 24, + [6722] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14849,59 +15011,59 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - STATE(575), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1122), 1, + STATE(903), 1, sym_expression_list, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14914,7 +15076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6618] = 24, + [6826] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -14929,59 +15091,59 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - STATE(524), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, - sym_implicit_length_array_type, - STATE(1198), 1, + STATE(913), 1, sym_expression_list, + STATE(1144), 1, + sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -14994,7 +15156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6722] = 24, + [6930] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15007,61 +15169,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(516), 1, - anon_sym_RBRACK, - STATE(624), 1, + ACTIONS(530), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15074,7 +15236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6826] = 24, + [7034] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15087,61 +15249,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(518), 1, - anon_sym_SEMI, - STATE(651), 1, + ACTIONS(532), 1, + anon_sym_RBRACK, + STATE(619), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15154,7 +15316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [6930] = 24, + [7138] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15167,11 +15329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -15179,25 +15341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(520), 1, - anon_sym_RPAREN, - STATE(596), 1, + STATE(554), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + STATE(1170), 1, + sym_variadic_argument, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -15208,20 +15370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15234,7 +15396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7034] = 24, + [7242] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15247,61 +15409,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(480), 1, - anon_sym_RBRACK, - STATE(653), 1, + ACTIONS(534), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15314,7 +15476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7138] = 24, + [7346] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15327,61 +15489,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(522), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(536), 1, + anon_sym_RBRACK, + STATE(599), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15394,7 +15556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7242] = 24, + [7450] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15407,61 +15569,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(524), 1, - anon_sym_RBRACK, - STATE(611), 1, + ACTIONS(538), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15474,7 +15636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7346] = 24, + [7554] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15487,61 +15649,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(526), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(540), 1, + anon_sym_RBRACK, + STATE(592), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15554,7 +15716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7450] = 24, + [7658] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15567,61 +15729,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(528), 1, - anon_sym_RBRACK, - STATE(613), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(542), 1, + anon_sym_COLON, + STATE(612), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(987), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15634,7 +15796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7554] = 24, + [7762] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15647,61 +15809,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(530), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(544), 1, + anon_sym_RBRACK, + STATE(623), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15714,7 +15876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7658] = 24, + [7866] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15727,61 +15889,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(532), 1, - anon_sym_RBRACK, - STATE(655), 1, + ACTIONS(546), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15794,87 +15956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7762] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(534), 1, - anon_sym_COLON, - STATE(603), 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(959), 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, - [7866] = 24, + [7970] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15889,59 +15971,59 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(536), 1, - anon_sym_RBRACK, - STATE(610), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(926), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -15954,7 +16036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [7970] = 24, + [8074] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -15967,61 +16049,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(538), 1, + ACTIONS(548), 1, anon_sym_RBRACK, - STATE(619), 1, + STATE(618), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16034,7 +16116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8074] = 24, + [8178] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16049,59 +16131,59 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(492), 1, - anon_sym_RBRACK, - STATE(639), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(922), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16114,7 +16196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8178] = 24, + [8282] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16127,61 +16209,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + STATE(538), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(919), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + STATE(1211), 1, + sym_expression_list, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16194,7 +16276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8282] = 24, + [8386] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16207,61 +16289,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(918), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16274,7 +16356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8386] = 24, + [8490] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16287,61 +16369,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, + ACTIONS(342), 1, + anon_sym_DQUOTE, ACTIONS(552), 1, - anon_sym_RPAREN, - STATE(596), 1, + anon_sym_RBRACK, + STATE(613), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16354,7 +16436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8490] = 24, + [8594] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16367,61 +16449,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(554), 1, - anon_sym_RBRACK, - STATE(609), 1, + anon_sym_SEMI, + STATE(631), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16434,7 +16516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8594] = 24, + [8698] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16447,61 +16529,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(556), 1, - anon_sym_SEMI, - STATE(631), 1, + ACTIONS(466), 1, + anon_sym_RBRACK, + STATE(641), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16514,7 +16596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8698] = 24, + [8802] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16527,61 +16609,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(558), 1, - anon_sym_RBRACK, - STATE(602), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(556), 1, + anon_sym_COLON, + STATE(597), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(987), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16594,7 +16676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [8802] = 24, + [8906] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -16607,11 +16689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -16619,25 +16701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(560), 1, + ACTIONS(558), 1, anon_sym_RPAREN, - STATE(596), 1, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -16648,100 +16730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 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, - [8906] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(562), 1, - anon_sym_COLON, - STATE(616), 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(959), 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, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16767,61 +16769,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(310), 1, + ACTIONS(328), 1, + anon_sym_STAR, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(564), 1, - anon_sym_COLON, - STATE(622), 1, + ACTIONS(560), 1, + anon_sym_RBRACK, + STATE(606), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16847,61 +16849,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(524), 1, + ACTIONS(562), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1130), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -16927,61 +16929,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(566), 1, + ACTIONS(564), 1, anon_sym_RBRACK, - STATE(597), 1, + STATE(596), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17007,61 +17009,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(568), 1, - anon_sym_RBRACK, - STATE(599), 1, + ACTIONS(566), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17087,61 +17089,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(334), 1, + anon_sym_LT_DASH, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(476), 1, anon_sym_STAR, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(570), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(510), 1, + sym_identifier, + ACTIONS(568), 1, + anon_sym_COLON, + STATE(594), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(987), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17167,61 +17169,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(572), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(570), 1, + anon_sym_RBRACK, + STATE(620), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17247,61 +17249,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(350), 1, + ACTIONS(304), 1, anon_sym_func, - ACTIONS(540), 1, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - STATE(468), 1, + STATE(463), 1, sym__expression, - STATE(895), 1, - sym_qualified_type, - STATE(926), 1, + STATE(885), 1, sym_expression_list, - STATE(1116), 1, + STATE(888), 1, + sym_qualified_type, + STATE(1144), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17327,61 +17329,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(474), 1, + anon_sym_RBRACK, + STATE(651), 1, sym__expression, - STATE(885), 1, - sym_expression_list, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17407,61 +17409,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(574), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(572), 1, + anon_sym_SEMI, + STATE(638), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17487,61 +17489,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(574), 1, + anon_sym_RBRACK, + STATE(650), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(920), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17567,91 +17569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - ACTIONS(576), 1, - anon_sym_COLON, - STATE(606), 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(959), 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, - [10154] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -17659,25 +17581,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(578), 1, + ACTIONS(576), 1, anon_sym_RPAREN, - STATE(596), 1, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -17688,20 +17610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17714,7 +17636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10258] = 24, + [10154] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -17727,61 +17649,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + STATE(538), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(936), 1, + STATE(1131), 1, sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17794,7 +17716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10362] = 24, + [10258] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -17807,61 +17729,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, + ACTIONS(476), 1, anon_sym_STAR, ACTIONS(510), 1, sym_identifier, - ACTIONS(580), 1, + ACTIONS(578), 1, anon_sym_COLON, - STATE(615), 1, + STATE(602), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(987), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17874,7 +17796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10466] = 24, + [10362] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -17887,61 +17809,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(556), 1, + ACTIONS(580), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1122), 1, - sym_expression_list, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -17954,7 +17876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10570] = 24, + [10466] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -17967,61 +17889,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(582), 1, anon_sym_RBRACK, - STATE(595), 1, + STATE(614), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18034,7 +17956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10674] = 24, + [10570] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -18047,61 +17969,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(584), 1, - anon_sym_RBRACK, - STATE(608), 1, + STATE(538), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1141), 1, + sym_expression_list, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18114,7 +18036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10778] = 24, + [10674] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -18127,61 +18049,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(584), 1, + anon_sym_RPAREN, + STATE(601), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(923), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18194,7 +18116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [10882] = 24, + [10778] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -18207,61 +18129,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(586), 1, + anon_sym_RBRACK, + STATE(616), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(921), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(449), 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, + [10882] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, + anon_sym_STAR, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(588), 1, + anon_sym_RPAREN, + STATE(601), 1, + sym__expression, + STATE(813), 1, + sym_qualified_type, + STATE(1166), 1, + sym_implicit_length_array_type, + ACTIONS(336), 2, + anon_sym_new, + anon_sym_make, + STATE(1262), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(340), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 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(871), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18289,59 +18291,59 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(586), 1, - anon_sym_RBRACK, - STATE(604), 1, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(951), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18367,61 +18369,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(590), 1, + anon_sym_RBRACK, + STATE(622), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(953), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18447,61 +18449,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(468), 1, + ACTIONS(516), 1, + anon_sym_RBRACK, + STATE(633), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(949), 1, - sym_expression_list, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18527,61 +18529,61 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(296), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(588), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(898), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18607,61 +18609,61 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(296), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(590), 1, - anon_sym_RPAREN, - STATE(596), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(463), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(904), 1, + sym_expression_list, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18687,61 +18689,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(478), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - STATE(568), 1, + STATE(589), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1141), 1, + sym_expression_list, + STATE(1166), 1, sym_implicit_length_array_type, - STATE(1172), 1, - sym_variadic_argument, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18767,61 +18769,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, + ACTIONS(478), 1, sym_identifier, - ACTIONS(514), 1, - anon_sym_RBRACK, - STATE(648), 1, + ACTIONS(480), 1, + anon_sym_STAR, + ACTIONS(484), 1, + anon_sym_LT_DASH, + STATE(589), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1131), 1, + sym_expression_list, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(959), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18847,59 +18849,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, - anon_sym_DQUOTE, - STATE(384), 1, + STATE(591), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18925,59 +18927,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - STATE(630), 1, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(489), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -18993,12 +18995,8 @@ static const uint16_t ts_small_parse_table[] = { [11916] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -19007,55 +19005,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(39), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, + anon_sym_STAR, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, - anon_sym_func, - ACTIONS(612), 1, - sym_identifier, - STATE(300), 1, + STATE(658), 1, sym__expression, - STATE(903), 1, + STATE(813), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19071,12 +19073,8 @@ static const uint16_t ts_small_parse_table[] = { [12017] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -19085,55 +19083,59 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, sym_identifier, - STATE(298), 1, + ACTIONS(480), 1, + anon_sym_STAR, + ACTIONS(484), 1, + anon_sym_LT_DASH, + STATE(656), 1, sym__expression, - STATE(903), 1, + STATE(813), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19159,59 +19161,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(489), 1, + STATE(653), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19237,59 +19239,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(636), 1, + ACTIONS(476), 1, + anon_sym_STAR, + ACTIONS(510), 1, + sym_identifier, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19315,59 +19317,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(477), 1, + STATE(629), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19383,69 +19385,69 @@ static const uint16_t ts_small_parse_table[] = { [12421] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(39), 1, + ACTIONS(296), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, + anon_sym_STAR, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, - anon_sym_func, - ACTIONS(612), 1, - sym_identifier, - STATE(297), 1, + ACTIONS(592), 1, + anon_sym_chan, + STATE(471), 1, sym__expression, - STATE(903), 1, + STATE(888), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1144), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19461,12 +19463,8 @@ static const uint16_t ts_small_parse_table[] = { [12522] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -19475,133 +19473,59 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(296), 1, sym_identifier, - STATE(296), 1, - sym__expression, - STATE(903), 1, - sym_qualified_type, - STATE(1137), 1, - sym_implicit_length_array_type, - ACTIONS(63), 2, - anon_sym_new, - anon_sym_make, - STATE(1242), 2, - sym_parenthesized_type, - sym__simple_type, - ACTIONS(67), 3, - sym_raw_string_literal, - sym_imaginary_literal, - sym_rune_literal, - STATE(816), 4, - sym_pointer_type, - sym_interface_type, - sym_channel_type, - sym_function_type, - ACTIONS(65), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - STATE(1014), 5, - sym_generic_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_map_type, - ACTIONS(71), 6, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - STATE(320), 12, - sym_parenthesized_expression, - sym_call_expression, - sym_selector_expression, - sym_index_expression, - sym_slice_expression, - sym_type_assertion_expression, - sym_type_conversion_expression, - sym_composite_literal, - sym_func_literal, - sym_unary_expression, - sym_binary_expression, - sym_interpreted_string_literal, - [12623] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(35), 1, - anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(39), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(178), 1, - anon_sym_func, - ACTIONS(612), 1, - sym_identifier, - STATE(295), 1, + STATE(471), 1, sym__expression, - STATE(903), 1, + STATE(888), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1144), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19614,7 +19538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12724] = 23, + [12623] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -19627,59 +19551,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - STATE(426), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(471), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19692,7 +19616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12825] = 23, + [12724] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -19705,59 +19629,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19770,7 +19694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [12926] = 23, + [12825] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -19783,11 +19707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -19795,23 +19719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(625), 1, + STATE(601), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -19822,20 +19746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19848,7 +19772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13027] = 23, + [12926] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -19861,59 +19785,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - STATE(563), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + STATE(634), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -19926,7 +19850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13128] = 23, + [13027] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -19939,59 +19863,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - STATE(565), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(475), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20004,7 +19928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13229] = 23, + [13128] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -20017,59 +19941,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - STATE(566), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(481), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20082,7 +20006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13330] = 23, + [13229] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -20095,11 +20019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -20107,23 +20031,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(621), 1, + STATE(608), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -20134,20 +20058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20160,11 +20084,15 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13431] = 23, + [13330] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -20173,59 +20101,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, + ACTIONS(39), 1, + anon_sym_LT_DASH, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, sym_identifier, - ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, - anon_sym_LT_DASH, - STATE(567), 1, + STATE(295), 1, sym__expression, - STATE(794), 1, + STATE(910), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1226), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20238,7 +20162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13532] = 23, + [13431] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -20253,57 +20177,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, ACTIONS(296), 1, sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(304), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - STATE(658), 1, + ACTIONS(522), 1, + anon_sym_LT_DASH, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(474), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20316,7 +20240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13633] = 23, + [13532] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -20329,59 +20253,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(596), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - STATE(426), 1, + STATE(388), 1, sym__expression, - STATE(794), 1, + STATE(949), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20394,11 +20318,15 @@ static const uint16_t ts_small_parse_table[] = { sym_unary_expression, sym_binary_expression, sym_interpreted_string_literal, - [13734] = 23, + [13633] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -20407,59 +20335,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(39), 1, + anon_sym_LT_DASH, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, sym_identifier, - ACTIONS(298), 1, + STATE(294), 1, + sym__expression, + STATE(910), 1, + sym_qualified_type, + STATE(1151), 1, + sym_implicit_length_array_type, + ACTIONS(63), 2, + anon_sym_new, + anon_sym_make, + STATE(1226), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(67), 3, + sym_raw_string_literal, + sym_imaginary_literal, + sym_rune_literal, + STATE(824), 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(1047), 5, + sym_generic_type, + sym_array_type, + sym_slice_type, + sym_struct_type, + sym_map_type, + ACTIONS(71), 6, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + STATE(331), 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, + [13734] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(304), 1, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(35), 1, + anon_sym_map, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(633), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, + sym_identifier, + STATE(300), 1, sym__expression, - STATE(794), 1, + STATE(910), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1226), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20487,57 +20489,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, ACTIONS(296), 1, sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(304), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - STATE(634), 1, + ACTIONS(522), 1, + anon_sym_LT_DASH, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(492), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20561,61 +20563,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(592), 1, anon_sym_chan, - STATE(426), 1, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20631,8 +20633,12 @@ static const uint16_t ts_small_parse_table[] = { [14037] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -20641,59 +20647,55 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(637), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, + sym_identifier, + STATE(299), 1, sym__expression, - STATE(794), 1, + STATE(910), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1226), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20709,8 +20711,12 @@ static const uint16_t ts_small_parse_table[] = { [14138] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -20719,59 +20725,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, - anon_sym_func, - ACTIONS(318), 1, + ACTIONS(39), 1, + anon_sym_LT_DASH, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, sym_identifier, - ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, - anon_sym_LT_DASH, - STATE(642), 1, + STATE(298), 1, sym__expression, - STATE(794), 1, + STATE(910), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1226), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20787,8 +20789,12 @@ static const uint16_t ts_small_parse_table[] = { [14239] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -20797,59 +20803,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_func, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(387), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, + sym_identifier, + STATE(297), 1, sym__expression, - STATE(916), 1, + STATE(910), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1226), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20875,59 +20877,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(635), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, + anon_sym_STAR, + STATE(654), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1178), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -20951,61 +20953,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(298), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, - anon_sym_chan, - STATE(426), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21031,59 +21033,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_identifier, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, - anon_sym_DQUOTE, - STATE(386), 1, + STATE(570), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21109,59 +21111,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(296), 1, sym_identifier, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(304), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - STATE(385), 1, + STATE(470), 1, sym__expression, - STATE(916), 1, + STATE(888), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1144), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21187,59 +21189,59 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(296), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - STATE(426), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(479), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21265,59 +21267,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_identifier, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, - anon_sym_DQUOTE, - STATE(388), 1, + STATE(567), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21343,59 +21345,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_identifier, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(632), 1, + STATE(561), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21421,35 +21423,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 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, + ACTIONS(616), 1, + anon_sym_STAR, + STATE(637), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1178), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -21460,20 +21462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21499,59 +21501,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(478), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - STATE(587), 1, + STATE(560), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21577,59 +21579,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, - sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_identifier, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, - anon_sym_DQUOTE, - STATE(383), 1, + STATE(426), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21655,11 +21657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(444), 1, sym_identifier, @@ -21667,23 +21669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(626), 1, + STATE(605), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -21694,20 +21696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21733,59 +21735,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(444), 1, + ACTIONS(478), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - STATE(596), 1, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21811,59 +21813,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(640), 1, + STATE(632), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21889,59 +21891,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(384), 1, + STATE(635), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -21957,12 +21959,8 @@ static const uint16_t ts_small_parse_table[] = { [15754] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -21971,55 +21969,59 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, sym_identifier, - STATE(294), 1, + ACTIONS(448), 1, + anon_sym_STAR, + ACTIONS(450), 1, + anon_sym_LT_DASH, + STATE(626), 1, sym__expression, - STATE(903), 1, + STATE(813), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22045,35 +22047,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(616), 1, anon_sym_STAR, - STATE(629), 1, + STATE(657), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1178), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -22084,20 +22086,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22123,59 +22125,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(656), 1, + STATE(603), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22201,59 +22203,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_identifier, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, - anon_sym_DQUOTE, - STATE(627), 1, + STATE(652), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22279,59 +22281,59 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(296), 1, sym_identifier, - ACTIONS(448), 1, + ACTIONS(304), 1, + anon_sym_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - STATE(426), 1, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(480), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22357,59 +22359,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(467), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, + anon_sym_STAR, + STATE(640), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1178), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22433,37 +22435,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(296), 1, - sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, + anon_sym_STAR, ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(614), 1, - anon_sym_STAR, - STATE(644), 1, + ACTIONS(592), 1, + anon_sym_chan, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -22474,20 +22476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22513,59 +22515,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(643), 1, + STATE(630), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22581,69 +22583,69 @@ static const uint16_t ts_small_parse_table[] = { [16562] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(39), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, + anon_sym_STAR, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(69), 1, + ACTIONS(342), 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(645), 1, sym__expression, - STATE(903), 1, + STATE(813), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22669,59 +22671,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(466), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, + anon_sym_STAR, + STATE(425), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22747,59 +22749,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(465), 1, + STATE(484), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22825,59 +22827,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, STATE(426), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22903,59 +22905,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(463), 1, + STATE(642), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -22981,59 +22983,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(481), 1, + STATE(425), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23059,59 +23061,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(425), 1, + STATE(491), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23137,59 +23139,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - STATE(586), 1, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(490), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23213,61 +23215,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(657), 1, + ACTIONS(592), 1, + anon_sym_chan, + STATE(483), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23293,59 +23295,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - STATE(601), 1, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(482), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23371,59 +23373,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(440), 1, anon_sym_DQUOTE, - STATE(484), 1, + STATE(485), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23449,59 +23451,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(649), 1, + STATE(639), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23527,59 +23529,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(424), 1, + sym_identifier, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(430), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - STATE(425), 1, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(483), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1268), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23605,59 +23607,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(424), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(426), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(428), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(430), 1, anon_sym_STAR, - STATE(650), 1, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(440), 1, + anon_sym_DQUOTE, + STATE(483), 1, sym__expression, - STATE(794), 1, + STATE(930), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1161), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(434), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(438), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(436), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1083), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(442), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(556), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23681,61 +23683,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(592), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(320), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, - anon_sym_chan, - STATE(384), 1, + STATE(598), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23761,59 +23763,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(230), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, - anon_sym_DQUOTE, - STATE(346), 1, + STATE(587), 1, sym__expression, - STATE(947), 1, + STATE(813), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23839,59 +23841,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(592), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(594), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(598), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(600), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(608), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(389), 1, + STATE(643), 1, sym__expression, - STATE(916), 1, + STATE(813), 1, sym_qualified_type, - STATE(1119), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(602), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1266), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(606), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(604), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1108), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(610), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(392), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23917,59 +23919,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - STATE(582), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + STATE(646), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -23997,57 +23999,57 @@ static const uint16_t ts_small_parse_table[] = { 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_func, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(522), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - STATE(607), 1, + STATE(486), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24071,61 +24073,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(230), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, - anon_sym_DQUOTE, - ACTIONS(616), 1, - anon_sym_chan, - STATE(346), 1, + STATE(583), 1, sym__expression, - STATE(947), 1, + STATE(813), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24151,59 +24153,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, - anon_sym_DQUOTE, - STATE(490), 1, + STATE(581), 1, sym__expression, - STATE(884), 1, + STATE(813), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24229,59 +24231,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(596), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - STATE(346), 1, + STATE(389), 1, sym__expression, - STATE(947), 1, + STATE(949), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24307,59 +24309,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - STATE(585), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + STATE(662), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24385,59 +24387,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(596), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - STATE(426), 1, + STATE(387), 1, sym__expression, - STATE(794), 1, + STATE(949), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24463,59 +24465,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(596), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - STATE(660), 1, + STATE(386), 1, sym__expression, - STATE(794), 1, + STATE(949), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24539,61 +24541,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(424), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(596), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, - anon_sym_chan, - STATE(490), 1, + STATE(384), 1, sym__expression, - STATE(884), 1, + STATE(949), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24619,59 +24621,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(596), 1, + sym_identifier, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(310), 1, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - ACTIONS(494), 1, - anon_sym_STAR, - ACTIONS(510), 1, - sym_identifier, - STATE(426), 1, + STATE(383), 1, sym__expression, - STATE(794), 1, + STATE(949), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24697,59 +24699,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(596), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - STATE(490), 1, + STATE(385), 1, sym__expression, - STATE(884), 1, + STATE(949), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24773,61 +24775,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(298), 1, + ACTIONS(592), 1, + anon_sym_chan, + ACTIONS(596), 1, + sym_identifier, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(616), 1, - anon_sym_chan, - STATE(426), 1, + ACTIONS(612), 1, + anon_sym_DQUOTE, + STATE(389), 1, sym__expression, - STATE(794), 1, + STATE(949), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24855,57 +24857,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, ACTIONS(296), 1, sym_identifier, - ACTIONS(298), 1, - anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(304), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(518), 1, + anon_sym_LPAREN, + ACTIONS(520), 1, anon_sym_STAR, - STATE(652), 1, + ACTIONS(522), 1, + anon_sym_LT_DASH, + ACTIONS(528), 1, + anon_sym_DQUOTE, + STATE(487), 1, sym__expression, - STATE(794), 1, + STATE(888), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1144), 1, sym_implicit_length_array_type, ACTIONS(312), 2, anon_sym_new, anon_sym_make, - STATE(1151), 2, + STATE(1265), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(526), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(524), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1035), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(316), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(505), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -24931,59 +24933,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(596), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(598), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(600), 1, anon_sym_func, - ACTIONS(304), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(310), 1, + ACTIONS(604), 1, anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(612), 1, anon_sym_DQUOTE, - STATE(646), 1, + STATE(389), 1, sym__expression, - STATE(794), 1, + STATE(949), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1120), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(606), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1267), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(610), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(608), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1113), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(614), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(401), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25009,59 +25011,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(304), 1, - anon_sym_STAR, - ACTIONS(310), 1, - anon_sym_LT_DASH, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(645), 1, + ACTIONS(450), 1, + anon_sym_LT_DASH, + ACTIONS(616), 1, + anon_sym_STAR, + STATE(644), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1178), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(314), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25087,59 +25089,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(296), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(298), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - anon_sym_LT_DASH, - ACTIONS(614), 1, + ACTIONS(234), 1, anon_sym_STAR, - STATE(426), 1, + ACTIONS(236), 1, + anon_sym_LT_DASH, + ACTIONS(246), 1, + anon_sym_DQUOTE, + STATE(340), 1, sym__expression, - STATE(794), 1, + STATE(927), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1176), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25165,59 +25167,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(444), 1, - sym_identifier, - ACTIONS(448), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(450), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - STATE(612), 1, + ACTIONS(246), 1, + anon_sym_DQUOTE, + STATE(341), 1, sym__expression, - STATE(794), 1, + STATE(927), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1176), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(452), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25243,59 +25245,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(444), 1, sym_identifier, - ACTIONS(456), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(598), 1, + STATE(593), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25321,59 +25323,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(230), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, + sym_identifier, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, - anon_sym_DQUOTE, - STATE(345), 1, + STATE(609), 1, sym__expression, - STATE(947), 1, + STATE(813), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25399,59 +25401,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(232), 1, + anon_sym_func, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(480), 1, + STATE(342), 1, sym__expression, - STATE(895), 1, + STATE(927), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1176), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25489,23 +25491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(344), 1, + STATE(343), 1, sym__expression, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -25516,7 +25518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, @@ -25567,23 +25569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(342), 1, + STATE(344), 1, sym__expression, - STATE(947), 1, + STATE(927), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1176), 1, sym_implicit_length_array_type, ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, @@ -25594,7 +25596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, @@ -25633,59 +25635,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(480), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(484), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(471), 1, + STATE(607), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25711,59 +25713,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(473), 1, + STATE(647), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25779,69 +25781,69 @@ static const uint16_t ts_small_parse_table[] = { [20703] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(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(39), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(470), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(592), 1, + anon_sym_chan, + ACTIONS(594), 1, + sym_identifier, + STATE(295), 1, sym__expression, - STATE(895), 1, + STATE(910), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1226), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25867,59 +25869,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(232), 1, + anon_sym_func, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(478), 1, + STATE(340), 1, sym__expression, - STATE(895), 1, + STATE(927), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1176), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -25943,61 +25945,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(232), 1, + anon_sym_func, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(486), 1, + ACTIONS(592), 1, + anon_sym_chan, + STATE(340), 1, sym__expression, - STATE(895), 1, + STATE(927), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1176), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26023,59 +26025,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(341), 1, + STATE(425), 1, sym__expression, - STATE(947), 1, + STATE(813), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26101,59 +26103,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(226), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(230), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(232), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(234), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(236), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(246), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(340), 1, + STATE(627), 1, sym__expression, - STATE(947), 1, + STATE(813), 1, sym_qualified_type, - STATE(1159), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(240), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1265), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(244), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(242), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1073), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(248), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(362), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26179,59 +26181,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(226), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(230), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(232), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(234), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(236), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - STATE(492), 1, + STATE(346), 1, sym__expression, - STATE(884), 1, + STATE(927), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1176), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(240), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1266), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(244), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(242), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(1009), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(248), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(362), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26257,59 +26259,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, - anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - STATE(654), 1, + ACTIONS(616), 1, + anon_sym_STAR, + STATE(628), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1178), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26335,59 +26337,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(298), 1, + ACTIONS(320), 1, + sym_identifier, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(318), 1, - anon_sym_DQUOTE, - ACTIONS(454), 1, - sym_identifier, - ACTIONS(456), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(460), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - STATE(620), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + STATE(426), 1, sym__expression, - STATE(794), 1, + STATE(813), 1, sym_qualified_type, - STATE(1138), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(312), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1261), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(316), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(462), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(867), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(320), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(436), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26413,59 +26415,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(342), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(488), 1, + STATE(464), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26491,59 +26493,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(491), 1, + STATE(465), 1, sym__expression, - STATE(884), 1, + STATE(813), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26569,59 +26571,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(424), 1, + ACTIONS(320), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - STATE(483), 1, + STATE(466), 1, sym__expression, - STATE(884), 1, + STATE(813), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26645,61 +26647,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(342), 1, + ACTIONS(37), 1, + anon_sym_chan, + ACTIONS(320), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(326), 1, + anon_sym_func, + ACTIONS(328), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(334), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, - anon_sym_chan, - STATE(481), 1, + STATE(467), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1264), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(338), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26725,59 +26727,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, + ACTIONS(322), 1, anon_sym_LPAREN, - ACTIONS(428), 1, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(430), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, + sym_identifier, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(432), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, - anon_sym_DQUOTE, - STATE(482), 1, + STATE(611), 1, sym__expression, - STATE(884), 1, + STATE(813), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26803,59 +26805,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_func, ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(444), 1, sym_identifier, - ACTIONS(350), 1, - anon_sym_func, - ACTIONS(540), 1, - anon_sym_LPAREN, - ACTIONS(542), 1, + ACTIONS(448), 1, anon_sym_STAR, - ACTIONS(544), 1, + ACTIONS(450), 1, anon_sym_LT_DASH, - ACTIONS(550), 1, - anon_sym_DQUOTE, - STATE(481), 1, + STATE(425), 1, sym__expression, - STATE(895), 1, + STATE(813), 1, sym_qualified_type, - STATE(1116), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(358), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1006), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(548), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(546), 5, + ACTIONS(452), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1036), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(362), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(539), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26871,8 +26873,12 @@ static const uint16_t ts_small_parse_table[] = { [22117] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(15), 1, + anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, @@ -26881,59 +26887,55 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(39), 1, anon_sym_LT_DASH, - ACTIONS(440), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(487), 1, + ACTIONS(178), 1, + anon_sym_func, + ACTIONS(594), 1, + sym_identifier, + STATE(295), 1, sym__expression, - STATE(884), 1, + STATE(910), 1, sym_qualified_type, - STATE(1160), 1, + STATE(1151), 1, sym_implicit_length_array_type, - ACTIONS(434), 2, + ACTIONS(63), 2, anon_sym_new, anon_sym_make, - STATE(1267), 2, + STATE(967), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(438), 3, + ACTIONS(67), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(436), 5, + ACTIONS(65), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1074), 5, + STATE(1047), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(442), 6, + ACTIONS(71), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(553), 12, + STATE(331), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -26949,69 +26951,69 @@ static const uint16_t ts_small_parse_table[] = { [22218] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_STAR, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, ACTIONS(35), 1, anon_sym_map, - ACTIONS(37), 1, - anon_sym_chan, - ACTIONS(39), 1, - anon_sym_LT_DASH, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(178), 1, + ACTIONS(322), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, anon_sym_func, - ACTIONS(612), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(478), 1, sym_identifier, - STATE(294), 1, + ACTIONS(480), 1, + anon_sym_STAR, + ACTIONS(484), 1, + anon_sym_LT_DASH, + ACTIONS(592), 1, + anon_sym_chan, + STATE(425), 1, sym__expression, - STATE(903), 1, + STATE(813), 1, sym_qualified_type, - STATE(1137), 1, + STATE(1166), 1, sym_implicit_length_array_type, - ACTIONS(63), 2, + ACTIONS(336), 2, anon_sym_new, anon_sym_make, - STATE(1242), 2, + STATE(1262), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(67), 3, + ACTIONS(340), 3, sym_raw_string_literal, sym_imaginary_literal, sym_rune_literal, - STATE(816), 4, + STATE(824), 4, sym_pointer_type, sym_interface_type, sym_channel_type, sym_function_type, - ACTIONS(65), 5, + ACTIONS(486), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - STATE(1014), 5, + STATE(871), 5, sym_generic_type, sym_array_type, sym_slice_type, sym_struct_type, sym_map_type, - ACTIONS(71), 6, + ACTIONS(344), 6, sym_int_literal, sym_float_literal, sym_nil, sym_true, sym_false, sym_iota, - STATE(320), 12, + STATE(449), 12, sym_parenthesized_expression, sym_call_expression, sym_selector_expression, @@ -27031,7 +27033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(624), 1, anon_sym_LBRACK, - STATE(267), 1, + STATE(258), 1, sym_type_arguments, ACTIONS(618), 2, ts_builtin_sym_end, @@ -27081,86 +27083,136 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22382] = 10, + [22382] = 5, + ACTIONS(276), 1, + anon_sym_LBRACE, ACTIONS(286), 1, sym_comment, - ACTIONS(627), 1, + STATE(274), 1, + sym_block, + ACTIONS(627), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(631), 1, - anon_sym_DOT, - ACTIONS(634), 1, + ACTIONS(629), 44, + anon_sym_SEMI, + anon_sym_package, + anon_sym_import, anon_sym_LPAREN, - ACTIONS(637), 1, + 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, + [22442] = 5, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(642), 1, - anon_sym_COLON, - STATE(306), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 40, + ACTIONS(286), 1, + sym_comment, + STATE(247), 1, + sym_block, + ACTIONS(631), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(633), 44, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, + 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_RBRACE, - anon_sym_PIPE, + anon_sym_struct, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, anon_sym_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_case, - anon_sym_default, + anon_sym_fallthrough, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_return, + anon_sym_go, + anon_sym_defer, + anon_sym_if, + anon_sym_for, + anon_sym_switch, + anon_sym_select, + anon_sym_new, + anon_sym_make, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - 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, - [22452] = 10, + 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, + [22502] = 10, ACTIONS(286), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(635), 1, anon_sym_LF, - ACTIONS(631), 1, + ACTIONS(639), 1, anon_sym_DOT, - ACTIONS(634), 1, + ACTIONS(642), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - ACTIONS(640), 1, + ACTIONS(648), 1, anon_sym_LBRACE, - ACTIONS(644), 1, + ACTIONS(650), 1, anon_sym_COLON, STATE(306), 1, sym_literal_value, - STATE(817), 1, + STATE(842), 1, sym_type_arguments, - ACTIONS(629), 40, + ACTIONS(637), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -27201,17 +27253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [22522] = 5, + [22572] = 5, ACTIONS(276), 1, anon_sym_LBRACE, ACTIONS(286), 1, sym_comment, - STATE(244), 1, + STATE(272), 1, sym_block, - ACTIONS(646), 2, + ACTIONS(652), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(648), 44, + ACTIONS(654), 44, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27256,72 +27308,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22582] = 5, - ACTIONS(276), 1, - anon_sym_LBRACE, + [22632] = 10, ACTIONS(286), 1, sym_comment, - STATE(288), 1, - sym_block, - ACTIONS(650), 2, - ts_builtin_sym_end, + ACTIONS(635), 1, anon_sym_LF, - ACTIONS(652), 44, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, + ACTIONS(639), 1, + anon_sym_DOT, + ACTIONS(642), 1, anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, - anon_sym_func, + ACTIONS(645), 1, anon_sym_LBRACK, - anon_sym_type, + ACTIONS(648), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + anon_sym_COLON, + STATE(306), 1, + sym_literal_value, + STATE(842), 1, + sym_type_arguments, + ACTIONS(637), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, - anon_sym_struct, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, + anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, anon_sym_CARET, anon_sym_AMP, - sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_int_literal, - sym_float_literal, - sym_imaginary_literal, - sym_rune_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [22642] = 5, + 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, + [22702] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(658), 1, + ACTIONS(662), 1, anon_sym_LBRACK, - STATE(269), 1, + STATE(246), 1, sym_type_arguments, - ACTIONS(654), 2, + ACTIONS(658), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(656), 44, + ACTIONS(660), 44, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27366,17 +27423,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22702] = 5, - ACTIONS(276), 1, - anon_sym_LBRACE, + [22762] = 3, ACTIONS(286), 1, sym_comment, - STATE(255), 1, - sym_block, - ACTIONS(661), 2, + ACTIONS(665), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(663), 44, + ACTIONS(667), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27388,6 +27441,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, @@ -27421,13 +27475,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22762] = 3, + [22817] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(665), 2, + ACTIONS(669), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(667), 45, + ACTIONS(671), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27473,13 +27527,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22817] = 3, + [22872] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(669), 2, + ACTIONS(673), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(671), 45, + ACTIONS(675), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27525,13 +27579,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22872] = 3, + [22927] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(673), 2, + ACTIONS(677), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(675), 45, + ACTIONS(679), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27577,13 +27631,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22927] = 3, + [22982] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(677), 2, + ACTIONS(681), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(679), 45, + ACTIONS(683), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27629,16 +27683,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [22982] = 5, + [23037] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(681), 1, + ACTIONS(685), 2, ts_builtin_sym_end, - ACTIONS(685), 1, anon_sym_LF, - ACTIONS(687), 1, + ACTIONS(687), 45, anon_sym_SEMI, - ACTIONS(683), 44, anon_sym_package, anon_sym_import, anon_sym_LPAREN, @@ -27683,13 +27735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23041] = 3, + [23092] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(690), 2, + ACTIONS(689), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(692), 45, + ACTIONS(691), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27735,13 +27787,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23096] = 3, + [23147] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(694), 2, + ACTIONS(693), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(696), 45, + ACTIONS(695), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27787,13 +27839,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23151] = 3, + [23202] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(698), 2, + ACTIONS(697), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(700), 45, + ACTIONS(699), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27839,13 +27891,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23206] = 3, + [23257] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(702), 2, + ACTIONS(701), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(704), 45, + ACTIONS(703), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27891,13 +27943,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23261] = 3, + [23312] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(706), 2, + ACTIONS(705), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(708), 45, + ACTIONS(707), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27943,13 +27995,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23316] = 3, + [23367] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(654), 2, + ACTIONS(709), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(656), 45, + ACTIONS(711), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -27995,13 +28047,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23371] = 3, + [23422] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(710), 2, + ACTIONS(713), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(712), 45, + ACTIONS(715), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28047,13 +28099,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23426] = 3, + [23477] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(714), 2, + ACTIONS(717), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(716), 45, + ACTIONS(719), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28099,13 +28151,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23481] = 3, + [23532] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(718), 2, + ACTIONS(717), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(720), 45, + ACTIONS(719), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28151,13 +28203,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23536] = 3, + [23587] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(722), 2, + ACTIONS(721), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(724), 45, + ACTIONS(723), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28203,13 +28255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23591] = 3, + [23642] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(726), 2, + ACTIONS(725), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 45, + ACTIONS(727), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28255,13 +28307,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23646] = 3, + [23697] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(730), 2, + ACTIONS(729), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(732), 45, + ACTIONS(731), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28307,13 +28359,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23701] = 3, + [23752] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(734), 2, + ACTIONS(733), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(736), 45, + ACTIONS(735), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28359,13 +28411,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23756] = 3, + [23807] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(738), 2, + ACTIONS(737), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(740), 45, + ACTIONS(739), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28411,13 +28463,139 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23811] = 3, + [23862] = 9, ACTIONS(286), 1, sym_comment, - ACTIONS(742), 2, + ACTIONS(635), 1, + anon_sym_LF, + ACTIONS(639), 1, + anon_sym_DOT, + ACTIONS(642), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_LBRACK, + ACTIONS(648), 1, + anon_sym_LBRACE, + STATE(306), 1, + sym_literal_value, + STATE(842), 1, + sym_type_arguments, + ACTIONS(637), 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, + [23929] = 19, + ACTIONS(286), 1, + sym_comment, + ACTIONS(741), 1, + anon_sym_LF, + ACTIONS(745), 1, + anon_sym_DOT, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(749), 1, + anon_sym_COMMA, + ACTIONS(753), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_LT_DASH, + ACTIONS(761), 1, + anon_sym_PLUS_PLUS, + ACTIONS(763), 1, + anon_sym_DASH_DASH, + ACTIONS(767), 1, + anon_sym_AMP_AMP, + ACTIONS(769), 1, + anon_sym_PIPE_PIPE, + STATE(317), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(1145), 1, + sym_type_arguments, + ACTIONS(743), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(757), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(765), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(755), 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(751), 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, + [24016] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(771), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(744), 45, + ACTIONS(773), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28463,13 +28641,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23866] = 3, + [24071] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(746), 2, + ACTIONS(775), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 45, + ACTIONS(777), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28515,13 +28693,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [23921] = 3, + [24126] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(750), 2, + ACTIONS(779), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(752), 45, + ACTIONS(781), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28567,71 +28745,13 @@ 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, + [24181] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(754), 2, + ACTIONS(783), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(756), 45, + ACTIONS(785), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28677,13 +28797,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24098] = 3, + [24236] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(758), 2, + ACTIONS(787), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(760), 45, + ACTIONS(789), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28729,13 +28849,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24153] = 3, + [24291] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(762), 2, + ACTIONS(791), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 45, + ACTIONS(793), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28781,13 +28901,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24208] = 3, + [24346] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(766), 2, + ACTIONS(795), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 45, + ACTIONS(797), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28833,13 +28953,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24263] = 3, + [24401] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(770), 2, + ACTIONS(799), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(772), 45, + ACTIONS(801), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28885,13 +29005,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24318] = 3, + [24456] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(774), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(776), 45, + ACTIONS(805), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28937,13 +29057,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24373] = 3, + [24511] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(778), 2, + ACTIONS(807), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(780), 45, + ACTIONS(809), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -28989,13 +29109,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24428] = 3, + [24566] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(782), 2, + ACTIONS(811), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(784), 45, + ACTIONS(813), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29041,13 +29161,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24483] = 3, + [24621] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(786), 2, + ACTIONS(815), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(788), 45, + ACTIONS(817), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29093,13 +29213,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24538] = 3, + [24676] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(790), 2, + ACTIONS(819), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(792), 45, + ACTIONS(821), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29145,13 +29265,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24593] = 3, + [24731] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(794), 2, + ACTIONS(717), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(796), 45, + ACTIONS(719), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29197,13 +29317,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24648] = 3, + [24786] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(798), 2, + ACTIONS(823), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(800), 45, + ACTIONS(825), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29249,13 +29369,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24703] = 3, + [24841] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(802), 2, + ACTIONS(827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(804), 45, + ACTIONS(829), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29301,13 +29421,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24758] = 3, + [24896] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(806), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(808), 45, + ACTIONS(833), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29353,13 +29473,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24813] = 3, + [24951] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(810), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(812), 45, + ACTIONS(837), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29405,13 +29525,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24868] = 3, + [25006] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(814), 2, + ACTIONS(839), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(816), 45, + ACTIONS(841), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29457,13 +29577,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24923] = 3, + [25061] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(726), 2, + ACTIONS(843), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 45, + ACTIONS(845), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29509,81 +29629,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [24978] = 19, + [25116] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(818), 1, - anon_sym_LF, - ACTIONS(822), 1, - anon_sym_DOT, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(826), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LBRACK, - ACTIONS(836), 1, - anon_sym_LT_DASH, - ACTIONS(838), 1, - anon_sym_PLUS_PLUS, - ACTIONS(840), 1, - anon_sym_DASH_DASH, - ACTIONS(844), 1, - anon_sym_AMP_AMP, - ACTIONS(846), 1, - anon_sym_PIPE_PIPE, - STATE(322), 1, - sym_argument_list, - STATE(755), 1, - aux_sym_expression_list_repeat1, - STATE(1180), 1, - sym_type_arguments, - ACTIONS(820), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(834), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(842), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(832), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(828), 13, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25065] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(726), 2, + ACTIONS(847), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 45, + ACTIONS(849), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29629,13 +29681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25120] = 3, + [25171] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(848), 2, + ACTIONS(851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(850), 45, + ACTIONS(853), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29681,13 +29733,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25175] = 3, + [25226] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(852), 2, + ACTIONS(855), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(854), 45, + ACTIONS(857), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29733,85 +29785,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25230] = 23, - ACTIONS(3), 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, + [25281] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(885), 2, + ACTIONS(859), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(887), 45, + ACTIONS(861), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29857,13 +29837,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25380] = 3, + [25336] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(889), 2, + ACTIONS(658), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(891), 45, + ACTIONS(660), 45, anon_sym_SEMI, anon_sym_package, anon_sym_import, @@ -29909,66 +29889,88 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_iota, - [25435] = 3, - ACTIONS(286), 1, + [25391] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(893), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(895), 45, - anon_sym_SEMI, - anon_sym_package, - anon_sym_import, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(330), 1, + anon_sym_LBRACE, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(865), 1, + anon_sym_DOT, + ACTIONS(868), 1, anon_sym_LPAREN, - anon_sym_const, - anon_sym_var, + ACTIONS(872), 1, + anon_sym_COMMA, + ACTIONS(875), 1, anon_sym_func, + ACTIONS(877), 1, anon_sym_LBRACK, - anon_sym_type, + ACTIONS(880), 1, + anon_sym_RBRACK, + ACTIONS(883), 1, anon_sym_STAR, - anon_sym_struct, - anon_sym_LBRACE, - anon_sym_interface, + ACTIONS(886), 1, anon_sym_map, + ACTIONS(888), 1, anon_sym_chan, + ACTIONS(890), 1, anon_sym_LT_DASH, - anon_sym_fallthrough, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_return, - anon_sym_go, - anon_sym_defer, - anon_sym_if, - anon_sym_for, - anon_sym_switch, - anon_sym_select, - anon_sym_new, - anon_sym_make, + STATE(460), 1, + sym_literal_value, + STATE(670), 1, + aux_sym_parameter_declaration_repeat1, + STATE(792), 1, + sym_qualified_type, + STATE(842), 1, + sym_type_arguments, + STATE(1088), 2, + sym_parenthesized_type, + sym__simple_type, + ACTIONS(637), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + STATE(824), 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(635), 13, 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, + 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, + [25486] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(897), 2, + ACTIONS(892), 1, ts_builtin_sym_end, + ACTIONS(896), 1, anon_sym_LF, - ACTIONS(899), 45, + ACTIONS(898), 1, anon_sym_SEMI, + ACTIONS(894), 44, anon_sym_package, anon_sym_import, anon_sym_LPAREN, @@ -30120,17 +30122,17 @@ static const uint16_t ts_small_parse_table[] = { [25655] = 8, ACTIONS(286), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(745), 1, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(753), 1, anon_sym_LBRACK, ACTIONS(909), 1, anon_sym_LF, - STATE(322), 1, + STATE(317), 1, sym_argument_list, - STATE(1180), 1, + STATE(1145), 1, sym_type_arguments, ACTIONS(911), 40, anon_sym_SEMI, @@ -30173,48 +30175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25719] = 12, + [25719] = 8, ACTIONS(286), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(745), 1, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(844), 1, - anon_sym_AMP_AMP, ACTIONS(913), 1, anon_sym_LF, - STATE(322), 1, + STATE(317), 1, sym_argument_list, - STATE(1180), 1, + STATE(1145), 1, sym_type_arguments, - ACTIONS(834), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(842), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(832), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 22, + ACTIONS(915), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, + anon_sym_STAR, anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_COLON_EQ, anon_sym_PLUS_PLUS, @@ -30232,35 +30214,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25791] = 11, + [25783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 16, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LT_DASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_AMP, + sym_raw_string_literal, + anon_sym_DQUOTE, + sym_imaginary_literal, + sym_rune_literal, + ACTIONS(917), 30, + anon_sym_package, + anon_sym_import, + anon_sym_const, + anon_sym_var, + anon_sym_func, + anon_sym_type, + anon_sym_struct, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + 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, + sym_identifier, + sym_int_literal, + sym_float_literal, + sym_nil, + sym_true, + sym_false, + sym_iota, + [25837] = 12, ACTIONS(286), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(745), 1, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(767), 1, + anon_sym_AMP_AMP, + ACTIONS(909), 1, anon_sym_LF, - STATE(322), 1, + STATE(317), 1, sym_argument_list, - STATE(1180), 1, + STATE(1145), 1, sym_type_arguments, - ACTIONS(834), 4, + ACTIONS(757), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(842), 6, + ACTIONS(765), 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(755), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30268,7 +30319,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(911), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -30290,29 +30341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25861] = 10, + [25909] = 11, ACTIONS(286), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(745), 1, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LF, - STATE(322), 1, + STATE(317), 1, sym_argument_list, - STATE(1180), 1, + STATE(1145), 1, sym_type_arguments, - ACTIONS(834), 4, + ACTIONS(757), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(832), 7, + ACTIONS(765), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(755), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30320,7 +30377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 29, + ACTIONS(911), 23, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -30342,30 +30399,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25929] = 9, + [25979] = 10, ACTIONS(286), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(745), 1, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LF, - STATE(322), 1, + STATE(317), 1, sym_argument_list, - STATE(1180), 1, + STATE(1145), 1, sym_type_arguments, - ACTIONS(832), 7, + ACTIONS(757), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(755), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30373,12 +30429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 33, + ACTIONS(911), 29, 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, @@ -30396,9 +30451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_case, anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -30407,77 +30459,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [25995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 16, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_LT_DASH, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_AMP, - sym_raw_string_literal, - anon_sym_DQUOTE, - sym_imaginary_literal, - sym_rune_literal, - ACTIONS(917), 30, - anon_sym_package, - anon_sym_import, - anon_sym_const, - anon_sym_var, - anon_sym_func, - anon_sym_type, - anon_sym_struct, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - 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, - sym_identifier, - sym_int_literal, - sym_float_literal, - sym_nil, - sym_true, - sym_false, - sym_iota, - [26049] = 8, + [26047] = 9, ACTIONS(286), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(745), 1, anon_sym_DOT, - ACTIONS(824), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(753), 1, anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LF, - STATE(322), 1, + STATE(317), 1, sym_argument_list, - STATE(1180), 1, + STATE(1145), 1, sym_type_arguments, - ACTIONS(915), 40, + ACTIONS(755), 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(911), 33, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, - anon_sym_STAR, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_LT_DASH, @@ -30500,12 +30508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -30514,15 +30516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26113] = 3, + [26113] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(802), 1, + ACTIONS(635), 1, anon_sym_LF, - ACTIONS(804), 44, + ACTIONS(919), 1, + anon_sym_LPAREN, + STATE(317), 1, + sym_special_argument_list, + ACTIONS(637), 42, anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, @@ -30544,7 +30549,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, @@ -30564,87 +30568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26166] = 22, - 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(933), 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, - [26257] = 5, + [26170] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(673), 1, anon_sym_LF, - ACTIONS(947), 1, - anon_sym_LPAREN, - STATE(322), 1, - sym_special_argument_list, - ACTIONS(629), 42, + ACTIONS(675), 44, anon_sym_SEMI, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, @@ -30666,6 +30598,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, @@ -30685,12 +30618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26314] = 3, + [26223] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(722), 1, + ACTIONS(697), 1, anon_sym_LF, - ACTIONS(724), 44, + ACTIONS(699), 44, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30735,55 +30668,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26367] = 22, + [26276] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(741), 1, anon_sym_SEMI, - ACTIONS(828), 1, + ACTIONS(751), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_DOT, ACTIONS(921), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(923), 1, - anon_sym_COMMA, + anon_sym_LPAREN, ACTIONS(925), 1, + anon_sym_COMMA, + ACTIONS(927), 1, anon_sym_LBRACK, - ACTIONS(931), 1, + ACTIONS(933), 1, anon_sym_LT_DASH, - ACTIONS(935), 1, - anon_sym_PLUS_PLUS, ACTIONS(937), 1, + anon_sym_PLUS_PLUS, + ACTIONS(939), 1, anon_sym_DASH_DASH, - ACTIONS(943), 1, - anon_sym_AMP_AMP, ACTIONS(945), 1, + anon_sym_AMP_AMP, + ACTIONS(947), 1, anon_sym_PIPE_PIPE, - STATE(358), 1, + STATE(364), 1, sym_argument_list, STATE(755), 1, aux_sym_expression_list_repeat1, - STATE(848), 1, + STATE(882), 1, sym_block, - STATE(1146), 1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(941), 2, + ACTIONS(943), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(931), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(939), 4, + ACTIONS(941), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(927), 7, + ACTIONS(929), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -30791,7 +30724,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(935), 12, anon_sym_COLON_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -30804,25 +30737,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26458] = 3, - ACTIONS(286), 1, + [26367] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - anon_sym_LF, - ACTIONS(951), 43, + ACTIONS(31), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, anon_sym_SEMI, + ACTIONS(751), 1, + anon_sym_EQ, + ACTIONS(921), 1, anon_sym_DOT, + ACTIONS(923), 1, anon_sym_LPAREN, + ACTIONS(925), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(927), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(933), 1, anon_sym_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(937), 1, anon_sym_PLUS_PLUS, + ACTIONS(939), 1, anon_sym_DASH_DASH, + ACTIONS(945), 1, + anon_sym_AMP_AMP, + ACTIONS(947), 1, + anon_sym_PIPE_PIPE, + STATE(364), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(862), 1, + sym_block, + STATE(1154), 1, + sym_type_arguments, + ACTIONS(943), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(931), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(941), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 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(935), 12, + anon_sym_COLON_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -30834,31 +30806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [26510] = 3, + [26458] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(953), 1, + ACTIONS(949), 1, anon_sym_LF, - ACTIONS(955), 43, + ACTIONS(951), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30902,12 +30855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26562] = 3, + [26510] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(957), 1, + ACTIONS(953), 1, anon_sym_LF, - ACTIONS(959), 43, + ACTIONS(955), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -30951,12 +30904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26614] = 3, + [26562] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(750), 1, + ACTIONS(957), 1, anon_sym_LF, - ACTIONS(752), 43, + ACTIONS(959), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31000,7 +30953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26666] = 3, + [26614] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(961), 1, @@ -31049,7 +31002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26718] = 3, + [26666] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(965), 1, @@ -31098,12 +31051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26770] = 3, + [26718] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(969), 1, + ACTIONS(901), 1, anon_sym_LF, - ACTIONS(971), 43, + ACTIONS(903), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31147,12 +31100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26822] = 3, + [26770] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(973), 1, + ACTIONS(969), 1, anon_sym_LF, - ACTIONS(975), 43, + ACTIONS(971), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31196,12 +31149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26874] = 3, + [26822] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(977), 1, + ACTIONS(973), 1, anon_sym_LF, - ACTIONS(979), 43, + ACTIONS(975), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31245,12 +31198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [26926] = 3, + [26874] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(981), 1, + ACTIONS(977), 1, anon_sym_LF, - ACTIONS(983), 43, + ACTIONS(979), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31294,74 +31247,62 @@ 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, + [26926] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(985), 1, - anon_sym_LF, - ACTIONS(987), 43, + ACTIONS(741), 1, anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(751), 1, + anon_sym_EQ, + ACTIONS(923), 1, anon_sym_LPAREN, + ACTIONS(925), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(927), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, + ACTIONS(933), 1, anon_sym_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(937), 1, anon_sym_PLUS_PLUS, + ACTIONS(939), 1, anon_sym_DASH_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_case, - anon_sym_default, + ACTIONS(945), 1, + anon_sym_AMP_AMP, + ACTIONS(947), 1, + anon_sym_PIPE_PIPE, + ACTIONS(981), 1, + anon_sym_DOT, + ACTIONS(983), 1, + anon_sym_LBRACE, + STATE(364), 1, + sym_argument_list, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(1154), 1, + sym_type_arguments, + ACTIONS(943), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(931), 4, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(941), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 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_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, - [27030] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(989), 1, - anon_sym_LF, - ACTIONS(991), 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, + ACTIONS(935), 12, anon_sym_COLON_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -31373,31 +31314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [27082] = 3, + [27014] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(993), 1, + ACTIONS(985), 1, anon_sym_LF, - ACTIONS(995), 43, + ACTIONS(987), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31441,12 +31363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27134] = 3, + [27066] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(989), 1, anon_sym_LF, - ACTIONS(999), 43, + ACTIONS(991), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31490,12 +31412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27186] = 3, + [27118] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(847), 1, anon_sym_LF, - ACTIONS(629), 43, + ACTIONS(849), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31539,12 +31461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27238] = 3, + [27170] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1001), 1, + ACTIONS(993), 1, anon_sym_LF, - ACTIONS(1003), 43, + ACTIONS(995), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31588,12 +31510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27290] = 3, + [27222] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1005), 1, + ACTIONS(997), 1, anon_sym_LF, - ACTIONS(1007), 43, + ACTIONS(999), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31637,12 +31559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27342] = 3, + [27274] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1009), 1, + ACTIONS(1001), 1, anon_sym_LF, - ACTIONS(1011), 43, + ACTIONS(1003), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31686,79 +31608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27394] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 1, - anon_sym_SEMI, - ACTIONS(828), 1, - anon_sym_EQ, - 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, - ACTIONS(1013), 1, - anon_sym_DOT, - ACTIONS(1015), 1, - anon_sym_LBRACE, - 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, - [27482] = 3, + [27326] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1017), 1, + ACTIONS(1005), 1, anon_sym_LF, - ACTIONS(1019), 43, + ACTIONS(1007), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31802,12 +31657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27534] = 3, + [27378] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1021), 1, + ACTIONS(1009), 1, anon_sym_LF, - ACTIONS(1023), 43, + ACTIONS(1011), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31851,12 +31706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27586] = 3, + [27430] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1025), 1, + ACTIONS(1013), 1, anon_sym_LF, - ACTIONS(1027), 43, + ACTIONS(1015), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31900,12 +31755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27638] = 3, + [27482] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1017), 1, anon_sym_LF, - ACTIONS(1031), 43, + ACTIONS(1019), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31949,12 +31804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27690] = 3, + [27534] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1033), 1, + ACTIONS(1021), 1, anon_sym_LF, - ACTIONS(1035), 43, + ACTIONS(1023), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -31998,12 +31853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27742] = 3, + [27586] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(1025), 1, anon_sym_LF, - ACTIONS(1039), 43, + ACTIONS(1027), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32047,12 +31902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27794] = 3, + [27638] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1029), 1, anon_sym_LF, - ACTIONS(1043), 43, + ACTIONS(1031), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32096,12 +31951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27846] = 3, + [27690] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1033), 1, anon_sym_LF, - ACTIONS(1047), 43, + ACTIONS(1035), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32145,12 +32000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27898] = 3, + [27742] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1049), 1, + ACTIONS(1037), 1, anon_sym_LF, - ACTIONS(1051), 43, + ACTIONS(1039), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32194,12 +32049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [27950] = 3, + [27794] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1053), 1, + ACTIONS(635), 1, anon_sym_LF, - ACTIONS(1055), 43, + ACTIONS(637), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32243,12 +32098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28002] = 3, + [27846] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1057), 1, + ACTIONS(1041), 1, anon_sym_LF, - ACTIONS(1059), 43, + ACTIONS(1043), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32292,12 +32147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28054] = 3, + [27898] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1045), 1, anon_sym_LF, - ACTIONS(1063), 43, + ACTIONS(1047), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32341,12 +32196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28106] = 3, + [27950] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(690), 1, + ACTIONS(1049), 1, anon_sym_LF, - ACTIONS(692), 43, + ACTIONS(1051), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32390,12 +32245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28158] = 3, + [28002] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1065), 1, + ACTIONS(1053), 1, anon_sym_LF, - ACTIONS(1067), 43, + ACTIONS(1055), 43, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32439,23 +32294,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28210] = 8, - ACTIONS(3), 1, + [28054] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(1057), 1, + anon_sym_LF, + ACTIONS(1059), 43, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, - anon_sym_LBRACK, - STATE(357), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 14, + 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, @@ -32465,12 +32335,29 @@ static const uint16_t ts_small_parse_table[] = { 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), 24, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [28106] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1061), 1, + anon_sym_LF, + ACTIONS(1063), 43, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, + 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, @@ -32486,51 +32373,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_case, + anon_sym_default, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28271] = 13, - ACTIONS(3), 1, + [28158] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(919), 1, + ACTIONS(1065), 1, + anon_sym_LF, + ACTIONS(1067), 43, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(943), 1, - anon_sym_AMP_AMP, - STATE(358), 1, - sym_argument_list, - STATE(1146), 1, - sym_type_arguments, - ACTIONS(941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(929), 4, + 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, - ACTIONS(939), 4, + 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, - ACTIONS(927), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [28210] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + anon_sym_DOT, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(1069), 1, + anon_sym_LBRACK, + STATE(365), 1, + sym_literal_value, + STATE(842), 1, + sym_type_arguments, + ACTIONS(637), 14, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(635), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32549,44 +32488,41 @@ 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, - [28342] = 12, + [28271] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_DOT, ACTIONS(921), 1, + anon_sym_DOT, + ACTIONS(923), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(927), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(364), 1, sym_argument_list, - STATE(1146), 1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(915), 14, + anon_sym_EQ, + anon_sym_STAR, 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(913), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(913), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32605,39 +32541,41 @@ 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, - [28411] = 10, + [28332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, - anon_sym_DOT, ACTIONS(921), 1, + anon_sym_DOT, + ACTIONS(923), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(927), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(364), 1, sym_argument_list, - STATE(1146), 1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(915), 3, + ACTIONS(911), 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(909), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32662,51 +32600,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28476] = 20, + [28393] = 9, 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, + anon_sym_DOT, ACTIONS(923), 1, - anon_sym_COMMA, - ACTIONS(925), 1, + anon_sym_LPAREN, + ACTIONS(927), 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, + STATE(364), 1, sym_argument_list, - STATE(755), 1, - aux_sym_expression_list_repeat1, - STATE(1146), 1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(941), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(929), 4, + ACTIONS(911), 7, + anon_sym_EQ, 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_LT, + anon_sym_GT, + ACTIONS(929), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32714,8 +32629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(933), 12, + ACTIONS(909), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LT_DASH, anon_sym_COLON_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -32727,28 +32648,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28561] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [28456] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, - anon_sym_DOT, ACTIONS(921), 1, + anon_sym_DOT, + ACTIONS(923), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(927), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(364), 1, sym_argument_list, - STATE(1146), 1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(915), 7, + ACTIONS(911), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(931), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(927), 7, + ACTIONS(929), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -32756,7 +32684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 24, + ACTIONS(909), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32781,35 +32709,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [28624] = 8, + [28521] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, - anon_sym_DOT, + ACTIONS(911), 1, + anon_sym_EQ, ACTIONS(921), 1, + anon_sym_DOT, + ACTIONS(923), 1, anon_sym_LPAREN, - ACTIONS(925), 1, + ACTIONS(927), 1, anon_sym_LBRACK, - STATE(358), 1, + STATE(364), 1, sym_argument_list, - STATE(1146), 1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(915), 14, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(943), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(931), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(941), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 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(909), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32828,41 +32764,112 @@ 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, - [28685] = 8, + [28590] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, - anon_sym_DOT, + ACTIONS(741), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, + anon_sym_EQ, ACTIONS(921), 1, + anon_sym_DOT, + ACTIONS(923), 1, anon_sym_LPAREN, ACTIONS(925), 1, + anon_sym_COMMA, + ACTIONS(927), 1, anon_sym_LBRACK, - STATE(358), 1, + ACTIONS(937), 1, + anon_sym_PLUS_PLUS, + ACTIONS(939), 1, + anon_sym_DASH_DASH, + ACTIONS(945), 1, + anon_sym_AMP_AMP, + ACTIONS(947), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1072), 1, + anon_sym_LT_DASH, + STATE(364), 1, sym_argument_list, - STATE(1146), 1, + STATE(755), 1, + aux_sym_expression_list_repeat1, + STATE(1154), 1, sym_type_arguments, - ACTIONS(911), 14, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(943), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(931), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(941), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 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(935), 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, + [28675] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + anon_sym_EQ, + ACTIONS(921), 1, + anon_sym_DOT, + ACTIONS(923), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_LBRACK, + ACTIONS(945), 1, + anon_sym_AMP_AMP, + STATE(364), 1, + sym_argument_list, + STATE(1154), 1, + sym_type_arguments, + ACTIONS(943), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(909), 24, + ACTIONS(931), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(941), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(929), 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(909), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -32881,20 +32888,15 @@ 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, [28746] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1074), 1, anon_sym_LPAREN, - STATE(358), 1, + STATE(364), 1, sym_special_argument_list, - ACTIONS(629), 14, + ACTIONS(637), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -32909,7 +32911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 26, + ACTIONS(635), 26, anon_sym_SEMI, anon_sym_DOT, anon_sym_COMMA, @@ -32939,7 +32941,7 @@ static const uint16_t ts_small_parse_table[] = { [28800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(804), 14, + ACTIONS(971), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -32954,7 +32956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 27, + ACTIONS(969), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -32985,7 +32987,7 @@ static const uint16_t ts_small_parse_table[] = { [28849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 14, + ACTIONS(849), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33000,7 +33002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 27, + ACTIONS(847), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33031,7 +33033,7 @@ static const uint16_t ts_small_parse_table[] = { [28898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 14, + ACTIONS(1023), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33046,7 +33048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 27, + ACTIONS(1021), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33077,7 +33079,7 @@ static const uint16_t ts_small_parse_table[] = { [28947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(692), 14, + ACTIONS(1043), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33092,7 +33094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 27, + ACTIONS(1041), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33123,7 +33125,7 @@ static const uint16_t ts_small_parse_table[] = { [28996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 14, + ACTIONS(1063), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33138,7 +33140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 27, + ACTIONS(1061), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33169,7 +33171,7 @@ static const uint16_t ts_small_parse_table[] = { [29045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 14, + ACTIONS(963), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33184,7 +33186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 27, + ACTIONS(961), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33215,7 +33217,7 @@ static const uint16_t ts_small_parse_table[] = { [29094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 14, + ACTIONS(979), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33230,7 +33232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 27, + ACTIONS(977), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33261,7 +33263,7 @@ static const uint16_t ts_small_parse_table[] = { [29143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 14, + ACTIONS(975), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33276,7 +33278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 27, + ACTIONS(973), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33307,7 +33309,7 @@ static const uint16_t ts_small_parse_table[] = { [29192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(903), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33322,7 +33324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(969), 27, + ACTIONS(901), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33353,7 +33355,7 @@ static const uint16_t ts_small_parse_table[] = { [29241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(1015), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33368,7 +33370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 27, + ACTIONS(1013), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33399,7 +33401,7 @@ static const uint16_t ts_small_parse_table[] = { [29290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 14, + ACTIONS(1003), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33414,7 +33416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 27, + ACTIONS(1001), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33445,7 +33447,7 @@ static const uint16_t ts_small_parse_table[] = { [29339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 14, + ACTIONS(999), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33460,7 +33462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 27, + ACTIONS(997), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33491,7 +33493,7 @@ static const uint16_t ts_small_parse_table[] = { [29388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 14, + ACTIONS(995), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33506,7 +33508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 27, + ACTIONS(993), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33537,7 +33539,7 @@ static const uint16_t ts_small_parse_table[] = { [29437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 14, + ACTIONS(987), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33552,7 +33554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 27, + ACTIONS(985), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33583,7 +33585,7 @@ static const uint16_t ts_small_parse_table[] = { [29486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 14, + ACTIONS(637), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33598,7 +33600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 27, + ACTIONS(635), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33629,7 +33631,7 @@ static const uint16_t ts_small_parse_table[] = { [29535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 14, + ACTIONS(675), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33644,7 +33646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 27, + ACTIONS(673), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33675,7 +33677,7 @@ static const uint16_t ts_small_parse_table[] = { [29584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 14, + ACTIONS(991), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33690,7 +33692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 27, + ACTIONS(989), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33721,7 +33723,7 @@ static const uint16_t ts_small_parse_table[] = { [29633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 14, + ACTIONS(951), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33736,7 +33738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 27, + ACTIONS(949), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33767,7 +33769,7 @@ static const uint16_t ts_small_parse_table[] = { [29682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 14, + ACTIONS(1055), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33782,7 +33784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 27, + ACTIONS(1053), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33813,7 +33815,7 @@ static const uint16_t ts_small_parse_table[] = { [29731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 14, + ACTIONS(967), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33828,7 +33830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 27, + ACTIONS(965), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33859,7 +33861,7 @@ static const uint16_t ts_small_parse_table[] = { [29780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 14, + ACTIONS(959), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33874,7 +33876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 27, + ACTIONS(957), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33905,7 +33907,7 @@ static const uint16_t ts_small_parse_table[] = { [29829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 14, + ACTIONS(1059), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33920,7 +33922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 27, + ACTIONS(1057), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -33951,7 +33953,7 @@ static const uint16_t ts_small_parse_table[] = { [29878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 14, + ACTIONS(1019), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -33966,7 +33968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 27, + ACTIONS(1017), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34043,7 +34045,7 @@ static const uint16_t ts_small_parse_table[] = { [29976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 14, + ACTIONS(1039), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34058,7 +34060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 27, + ACTIONS(1037), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34089,7 +34091,7 @@ static const uint16_t ts_small_parse_table[] = { [30025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(1011), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34104,7 +34106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 27, + ACTIONS(1009), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34135,7 +34137,7 @@ static const uint16_t ts_small_parse_table[] = { [30074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 14, + ACTIONS(1067), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34150,7 +34152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 27, + ACTIONS(1065), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34181,7 +34183,7 @@ static const uint16_t ts_small_parse_table[] = { [30123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 14, + ACTIONS(1047), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34196,7 +34198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 27, + ACTIONS(1045), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34227,7 +34229,7 @@ static const uint16_t ts_small_parse_table[] = { [30172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(1035), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34242,7 +34244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 27, + ACTIONS(1033), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34273,7 +34275,7 @@ static const uint16_t ts_small_parse_table[] = { [30221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 14, + ACTIONS(699), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34288,7 +34290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 27, + ACTIONS(697), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34319,7 +34321,7 @@ static const uint16_t ts_small_parse_table[] = { [30270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 14, + ACTIONS(1007), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34334,7 +34336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 27, + ACTIONS(1005), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34365,7 +34367,7 @@ static const uint16_t ts_small_parse_table[] = { [30319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 14, + ACTIONS(1027), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34380,7 +34382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 27, + ACTIONS(1025), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34411,7 +34413,7 @@ static const uint16_t ts_small_parse_table[] = { [30368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 14, + ACTIONS(1031), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34426,7 +34428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 27, + ACTIONS(1029), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34457,7 +34459,7 @@ static const uint16_t ts_small_parse_table[] = { [30417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 14, + ACTIONS(1051), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34472,7 +34474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 27, + ACTIONS(1049), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -34503,19 +34505,19 @@ static const uint16_t ts_small_parse_table[] = { [30466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, + ACTIONS(865), 1, anon_sym_DOT, - ACTIONS(873), 1, + ACTIONS(880), 1, anon_sym_LPAREN, ACTIONS(1069), 1, anon_sym_LBRACK, ACTIONS(1076), 1, anon_sym_LBRACE, - STATE(394), 1, + STATE(412), 1, sym_literal_value, - STATE(817), 1, + STATE(842), 1, sym_type_arguments, - ACTIONS(629), 14, + ACTIONS(637), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34530,7 +34532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 19, + ACTIONS(635), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34550,7 +34552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30525] = 8, + [30525] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1078), 1, @@ -34559,26 +34561,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, - ACTIONS(915), 14, + ACTIONS(911), 7, anon_sym_EQ, - anon_sym_STAR, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1084), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - anon_sym_LT, - anon_sym_GT, - ACTIONS(913), 19, + ACTIONS(909), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34598,7 +34601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30581] = 8, + [30583] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1078), 1, @@ -34607,25 +34610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, - ACTIONS(911), 14, + ACTIONS(911), 3, anon_sym_EQ, - anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1086), 4, 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, - anon_sym_LT, - anon_sym_GT, ACTIONS(909), 19, anon_sym_COMMA, anon_sym_COLON_EQ, @@ -34646,7 +34651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30637] = 10, + [30643] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1078), 1, @@ -34655,28 +34660,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, - ACTIONS(915), 3, + ACTIONS(911), 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(909), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34696,10 +34699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30697] = 12, + [30699] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(911), 1, anon_sym_EQ, ACTIONS(1078), 1, anon_sym_DOT, @@ -34707,9 +34710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(408), 1, + STATE(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, ACTIONS(1090), 2, anon_sym_LT, @@ -34732,7 +34735,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(909), 15, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34748,10 +34751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [30761] = 13, + [30763] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(911), 1, anon_sym_EQ, ACTIONS(1078), 1, anon_sym_DOT, @@ -34761,9 +34764,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1092), 1, anon_sym_AMP_AMP, - STATE(408), 1, + STATE(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, ACTIONS(1090), 2, anon_sym_LT, @@ -34786,7 +34789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 14, + ACTIONS(909), 14, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34801,7 +34804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_PIPE, - [30827] = 9, + [30829] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1078), 1, @@ -34810,18 +34813,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1082), 1, anon_sym_LBRACK, - STATE(408), 1, + ACTIONS(1092), 1, + anon_sym_AMP_AMP, + ACTIONS(1096), 1, + anon_sym_EQ, + ACTIONS(1098), 1, + anon_sym_PIPE_PIPE, + STATE(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, - ACTIONS(915), 7, - anon_sym_EQ, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1086), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(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, @@ -34830,7 +34844,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(1094), 13, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34844,13 +34858,7 @@ 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, + [30897] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1078), 1, @@ -34859,38 +34867,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1082), 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(411), 1, sym_argument_list, - STATE(1127), 1, + STATE(1128), 1, sym_type_arguments, - ACTIONS(1090), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1086), 4, + ACTIONS(915), 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(1094), 13, + anon_sym_LT, + anon_sym_GT, + ACTIONS(913), 19, anon_sym_COMMA, anon_sym_COLON_EQ, anon_sym_STAR_EQ, @@ -34904,14 +34900,20 @@ 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, [30953] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1100), 1, anon_sym_LPAREN, - STATE(408), 1, + STATE(411), 1, sym_special_argument_list, - ACTIONS(629), 14, + ACTIONS(637), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34926,7 +34928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 21, + ACTIONS(635), 21, anon_sym_DOT, anon_sym_COMMA, anon_sym_LBRACK, @@ -34951,7 +34953,7 @@ static const uint16_t ts_small_parse_table[] = { [31002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 14, + ACTIONS(995), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -34966,7 +34968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 22, + ACTIONS(993), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -34992,7 +34994,7 @@ static const uint16_t ts_small_parse_table[] = { [31046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 14, + ACTIONS(1007), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35007,7 +35009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 22, + ACTIONS(1005), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35033,7 +35035,7 @@ static const uint16_t ts_small_parse_table[] = { [31090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 14, + ACTIONS(1059), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35048,7 +35050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 22, + ACTIONS(1057), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35074,7 +35076,7 @@ static const uint16_t ts_small_parse_table[] = { [31134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 14, + ACTIONS(1027), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35089,7 +35091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 22, + ACTIONS(1025), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35115,7 +35117,7 @@ static const uint16_t ts_small_parse_table[] = { [31178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 14, + ACTIONS(1043), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35130,7 +35132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 22, + ACTIONS(1041), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35156,7 +35158,7 @@ static const uint16_t ts_small_parse_table[] = { [31222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 14, + ACTIONS(1023), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35171,7 +35173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 22, + ACTIONS(1021), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35197,7 +35199,7 @@ static const uint16_t ts_small_parse_table[] = { [31266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 14, + ACTIONS(1015), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35212,7 +35214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 22, + ACTIONS(1013), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35238,7 +35240,7 @@ static const uint16_t ts_small_parse_table[] = { [31310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 14, + ACTIONS(1003), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35253,7 +35255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 22, + ACTIONS(1001), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35279,7 +35281,7 @@ static const uint16_t ts_small_parse_table[] = { [31354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(804), 14, + ACTIONS(999), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35294,7 +35296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 22, + ACTIONS(997), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35320,7 +35322,7 @@ static const uint16_t ts_small_parse_table[] = { [31398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 14, + ACTIONS(1055), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35335,7 +35337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(969), 22, + ACTIONS(1053), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35361,7 +35363,7 @@ static const uint16_t ts_small_parse_table[] = { [31442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 14, + ACTIONS(637), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35376,7 +35378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 22, + ACTIONS(635), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35402,7 +35404,7 @@ static const uint16_t ts_small_parse_table[] = { [31486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 14, + ACTIONS(1019), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35417,7 +35419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 22, + ACTIONS(1017), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35443,7 +35445,7 @@ static const uint16_t ts_small_parse_table[] = { [31530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 14, + ACTIONS(955), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35458,7 +35460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 22, + ACTIONS(953), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35484,7 +35486,7 @@ static const uint16_t ts_small_parse_table[] = { [31574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 14, + ACTIONS(1047), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35499,7 +35501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 22, + ACTIONS(1045), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35525,7 +35527,7 @@ static const uint16_t ts_small_parse_table[] = { [31618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 14, + ACTIONS(1051), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35540,7 +35542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 22, + ACTIONS(1049), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35566,7 +35568,7 @@ static const uint16_t ts_small_parse_table[] = { [31662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 14, + ACTIONS(1063), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35581,7 +35583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 22, + ACTIONS(1061), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35607,7 +35609,7 @@ static const uint16_t ts_small_parse_table[] = { [31706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(692), 14, + ACTIONS(987), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35622,7 +35624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 22, + ACTIONS(985), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35648,7 +35650,7 @@ static const uint16_t ts_small_parse_table[] = { [31750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 14, + ACTIONS(967), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35663,7 +35665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 22, + ACTIONS(965), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35689,7 +35691,7 @@ static const uint16_t ts_small_parse_table[] = { [31794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 14, + ACTIONS(675), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35704,7 +35706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 22, + ACTIONS(673), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35730,7 +35732,7 @@ static const uint16_t ts_small_parse_table[] = { [31838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 14, + ACTIONS(963), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35745,7 +35747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 22, + ACTIONS(961), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35771,7 +35773,7 @@ static const uint16_t ts_small_parse_table[] = { [31882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 14, + ACTIONS(991), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35786,7 +35788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 22, + ACTIONS(989), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35812,7 +35814,7 @@ static const uint16_t ts_small_parse_table[] = { [31926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 14, + ACTIONS(951), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35827,7 +35829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 22, + ACTIONS(949), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35853,7 +35855,7 @@ static const uint16_t ts_small_parse_table[] = { [31970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 14, + ACTIONS(975), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35868,7 +35870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 22, + ACTIONS(973), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35894,7 +35896,7 @@ static const uint16_t ts_small_parse_table[] = { [32014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 14, + ACTIONS(1067), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35909,7 +35911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 22, + ACTIONS(1065), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35935,7 +35937,7 @@ static const uint16_t ts_small_parse_table[] = { [32058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 14, + ACTIONS(1035), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35950,7 +35952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 22, + ACTIONS(1033), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -35976,7 +35978,7 @@ static const uint16_t ts_small_parse_table[] = { [32102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 14, + ACTIONS(971), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -35991,7 +35993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 22, + ACTIONS(969), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36017,7 +36019,7 @@ static const uint16_t ts_small_parse_table[] = { [32146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 14, + ACTIONS(699), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36032,7 +36034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 22, + ACTIONS(697), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36058,7 +36060,7 @@ static const uint16_t ts_small_parse_table[] = { [32190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 14, + ACTIONS(1031), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36073,7 +36075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 22, + ACTIONS(1029), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36099,7 +36101,7 @@ static const uint16_t ts_small_parse_table[] = { [32234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 14, + ACTIONS(979), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36114,7 +36116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 22, + ACTIONS(977), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36140,7 +36142,7 @@ static const uint16_t ts_small_parse_table[] = { [32278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 14, + ACTIONS(1011), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36155,7 +36157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 22, + ACTIONS(1009), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36181,7 +36183,7 @@ static const uint16_t ts_small_parse_table[] = { [32322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 14, + ACTIONS(959), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36196,7 +36198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 22, + ACTIONS(957), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36222,7 +36224,7 @@ static const uint16_t ts_small_parse_table[] = { [32366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 14, + ACTIONS(849), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36237,7 +36239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 22, + ACTIONS(847), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36263,7 +36265,7 @@ static const uint16_t ts_small_parse_table[] = { [32410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 14, + ACTIONS(903), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36278,7 +36280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 22, + ACTIONS(901), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36304,7 +36306,7 @@ static const uint16_t ts_small_parse_table[] = { [32454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 14, + ACTIONS(1039), 14, anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, @@ -36319,7 +36321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 22, + ACTIONS(1037), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -36351,9 +36353,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(915), 7, anon_sym_EQ, @@ -36395,9 +36397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(911), 7, anon_sym_EQ, @@ -36435,9 +36437,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1108), 1, anon_sym_LPAREN, - STATE(429), 1, + STATE(458), 1, sym_special_argument_list, - ACTIONS(629), 8, + ACTIONS(637), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36446,7 +36448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 23, + ACTIONS(635), 23, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -36473,20 +36475,20 @@ static const uint16_t ts_small_parse_table[] = { [32647] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(865), 1, anon_sym_DOT, ACTIONS(1069), 1, anon_sym_LBRACK, - STATE(434), 1, + STATE(460), 1, sym_literal_value, - STATE(817), 1, + STATE(842), 1, sym_type_arguments, - ACTIONS(873), 2, + ACTIONS(880), 2, anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(629), 7, + ACTIONS(637), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -36494,7 +36496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 19, + ACTIONS(635), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -36517,7 +36519,7 @@ static const uint16_t ts_small_parse_table[] = { [32700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 8, + ACTIONS(699), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36526,7 +36528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 24, + ACTIONS(697), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36554,7 +36556,7 @@ static const uint16_t ts_small_parse_table[] = { [32740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 8, + ACTIONS(967), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36563,7 +36565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 24, + ACTIONS(965), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36591,7 +36593,7 @@ static const uint16_t ts_small_parse_table[] = { [32780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 8, + ACTIONS(999), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36600,7 +36602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 24, + ACTIONS(997), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36628,7 +36630,7 @@ static const uint16_t ts_small_parse_table[] = { [32820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 8, + ACTIONS(1003), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36637,7 +36639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 24, + ACTIONS(1001), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36665,7 +36667,7 @@ static const uint16_t ts_small_parse_table[] = { [32860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 8, + ACTIONS(1015), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36674,7 +36676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 24, + ACTIONS(1013), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36702,7 +36704,7 @@ static const uint16_t ts_small_parse_table[] = { [32900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 8, + ACTIONS(1023), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36711,7 +36713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 24, + ACTIONS(1021), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36739,7 +36741,7 @@ static const uint16_t ts_small_parse_table[] = { [32940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 8, + ACTIONS(1043), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36748,7 +36750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 24, + ACTIONS(1041), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36776,7 +36778,7 @@ static const uint16_t ts_small_parse_table[] = { [32980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 8, + ACTIONS(1059), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36785,7 +36787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 24, + ACTIONS(1057), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36813,7 +36815,7 @@ static const uint16_t ts_small_parse_table[] = { [33020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 8, + ACTIONS(1039), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36822,7 +36824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 24, + ACTIONS(1037), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36850,7 +36852,7 @@ static const uint16_t ts_small_parse_table[] = { [33060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 8, + ACTIONS(1027), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36859,7 +36861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 24, + ACTIONS(1025), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36887,7 +36889,7 @@ static const uint16_t ts_small_parse_table[] = { [33100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 8, + ACTIONS(1011), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36896,7 +36898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 24, + ACTIONS(1009), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36924,7 +36926,7 @@ static const uint16_t ts_small_parse_table[] = { [33140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 8, + ACTIONS(1007), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36933,7 +36935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 24, + ACTIONS(1005), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36961,7 +36963,7 @@ static const uint16_t ts_small_parse_table[] = { [33180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 8, + ACTIONS(963), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -36970,7 +36972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 24, + ACTIONS(961), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -36998,7 +37000,7 @@ static const uint16_t ts_small_parse_table[] = { [33220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 8, + ACTIONS(1031), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37007,7 +37009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 24, + ACTIONS(1029), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37035,7 +37037,7 @@ static const uint16_t ts_small_parse_table[] = { [33260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(692), 8, + ACTIONS(903), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37044,7 +37046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(690), 24, + ACTIONS(901), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37072,7 +37074,7 @@ static const uint16_t ts_small_parse_table[] = { [33300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 8, + ACTIONS(1035), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37081,7 +37083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 24, + ACTIONS(1033), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37109,7 +37111,7 @@ static const uint16_t ts_small_parse_table[] = { [33340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 8, + ACTIONS(1019), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37118,7 +37120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 24, + ACTIONS(1017), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37146,7 +37148,7 @@ static const uint16_t ts_small_parse_table[] = { [33380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 8, + ACTIONS(955), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37155,7 +37157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 24, + ACTIONS(953), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37183,7 +37185,7 @@ static const uint16_t ts_small_parse_table[] = { [33420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 8, + ACTIONS(1067), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37192,7 +37194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 24, + ACTIONS(1065), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37218,6 +37220,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [33460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(979), 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(977), 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, + [33500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(637), 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(635), 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, + [33540] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 8, @@ -37254,7 +37330,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33500] = 3, + [33580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 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(1049), 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, + [33620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 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(1061), 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, + [33660] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(975), 8, @@ -37291,10 +37441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33540] = 3, + [33700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 8, + ACTIONS(959), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37303,7 +37453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 24, + ACTIONS(957), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37328,10 +37478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33580] = 3, + [33740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 8, + ACTIONS(987), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37340,7 +37490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 24, + ACTIONS(985), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37365,10 +37515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33620] = 3, + [33780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(804), 8, + ACTIONS(675), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37377,7 +37527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 24, + ACTIONS(673), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37402,10 +37552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33660] = 3, + [33820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 8, + ACTIONS(849), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37414,7 +37564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 24, + ACTIONS(847), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37439,10 +37589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33700] = 3, + [33860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 8, + ACTIONS(991), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37451,7 +37601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 24, + ACTIONS(989), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37476,10 +37626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33740] = 3, + [33900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 8, + ACTIONS(1055), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37488,7 +37638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 24, + ACTIONS(1053), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37513,10 +37663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33780] = 3, + [33940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 8, + ACTIONS(951), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37525,7 +37675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 24, + ACTIONS(949), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37550,10 +37700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33820] = 3, + [33980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 8, + ACTIONS(995), 8, anon_sym_DOT, anon_sym_EQ, anon_sym_PIPE, @@ -37562,7 +37712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 24, + ACTIONS(993), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -37587,7 +37737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33860] = 3, + [34020] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(971), 8, @@ -37624,183 +37774,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [33900] = 3, - ACTIONS(3), 1, + [34060] = 15, + ACTIONS(286), 1, sym_comment, - ACTIONS(979), 8, + ACTIONS(935), 1, + anon_sym_LF, + ACTIONS(1110), 1, 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(977), 24, - anon_sym_SEMI, + ACTIONS(1112), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1114), 1, anon_sym_COMMA, + ACTIONS(1116), 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, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1126), 1, anon_sym_PIPE_PIPE, - [33940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1023), 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(1021), 24, + STATE(502), 1, + sym_argument_list, + STATE(831), 1, + aux_sym_expression_list_repeat1, + STATE(1134), 1, + sym_type_arguments, + ACTIONS(751), 4, 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, - [33980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1039), 8, - anon_sym_DOT, - anon_sym_EQ, + anon_sym_case, + anon_sym_default, + ACTIONS(1120), 4, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1037), 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, + ACTIONS(1122), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [34020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 8, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1118), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(957), 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, - [34060] = 10, + [34123] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 5, + ACTIONS(911), 5, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 14, + ACTIONS(909), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -37815,82 +37865,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34113] = 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(1116), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [34164] = 12, + [34176] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(915), 4, + ACTIONS(911), 4, anon_sym_EQ, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 11, + ACTIONS(909), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -37902,46 +37910,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34221] = 14, + [34233] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(911), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 7, + ACTIONS(909), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -37949,148 +37957,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34282] = 15, + [34294] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(911), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 6, + ACTIONS(909), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COLON_EQ, anon_sym_PIPE_PIPE, - [34345] = 15, + [34357] = 22, ACTIONS(286), 1, sym_comment, - ACTIONS(933), 1, - anon_sym_LF, - ACTIONS(1128), 1, - anon_sym_DOT, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1132), 1, - anon_sym_COMMA, - ACTIONS(1134), 1, - anon_sym_LBRACK, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, ACTIONS(1144), 1, - anon_sym_PIPE_PIPE, - STATE(536), 1, - sym_argument_list, - STATE(827), 1, - aux_sym_expression_list_repeat1, - STATE(1156), 1, - sym_type_arguments, - ACTIONS(828), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(1138), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1140), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1136), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, + ACTIONS(1146), 1, anon_sym_LF, - ACTIONS(1152), 1, + ACTIONS(1150), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1152), 1, anon_sym_LPAREN, - ACTIONS(1156), 1, + ACTIONS(1154), 1, anon_sym_COMMA, - ACTIONS(1158), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(1160), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1162), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(1172), 1, + ACTIONS(1170), 1, anon_sym_LT_DASH, - ACTIONS(1174), 1, + ACTIONS(1172), 1, sym_raw_string_literal, - ACTIONS(1176), 1, + ACTIONS(1174), 1, anon_sym_DQUOTE, STATE(665), 1, aux_sym_field_declaration_repeat1, - STATE(778), 1, + STATE(783), 1, sym_qualified_type, - STATE(1028), 1, + STATE(1026), 1, sym_interpreted_string_literal, - ACTIONS(1150), 2, + ACTIONS(1148), 2, anon_sym_SEMI, anon_sym_RBRACE, - STATE(868), 2, + STATE(874), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -38100,165 +38060,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [34485] = 11, + [34434] = 9, ACTIONS(286), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(635), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(639), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(642), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(645), 1, anon_sym_LBRACK, - STATE(536), 1, - sym_argument_list, - STATE(1156), 1, + ACTIONS(1176), 1, + anon_sym_LBRACE, + STATE(501), 1, + sym_literal_value, + STATE(842), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(637), 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, - ACTIONS(1140), 6, + 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, - 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, + [34485] = 11, ACTIONS(286), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(1136), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(915), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1120), 4, anon_sym_PIPE, - anon_sym_case, - anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(1122), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + ACTIONS(911), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34589] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(858), 1, - anon_sym_DOT, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, - anon_sym_LBRACK, - ACTIONS(1178), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1118), 7, + anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(627), 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, - [34639] = 10, + [34539] = 8, ACTIONS(286), 1, sym_comment, ACTIONS(913), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(915), 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, - ACTIONS(1136), 7, - anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(915), 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, @@ -38267,97 +38185,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [34691] = 20, - ACTIONS(3), 1, + [34587] = 19, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(286), 1, sym_comment, - ACTIONS(828), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_LT_DASH, - ACTIONS(933), 1, - anon_sym_COLON_EQ, - ACTIONS(1180), 1, - anon_sym_DOT, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(1178), 1, + anon_sym_LF, ACTIONS(1182), 1, anon_sym_LPAREN, ACTIONS(1184), 1, anon_sym_COMMA, ACTIONS(1186), 1, + anon_sym_EQ, + ACTIONS(1188), 1, anon_sym_LBRACK, ACTIONS(1190), 1, - anon_sym_PIPE, - ACTIONS(1192), 1, - anon_sym_COLON, - ACTIONS(1202), 1, - anon_sym_AMP_AMP, - ACTIONS(1204), 1, - anon_sym_PIPE_PIPE, - STATE(572), 1, - sym_argument_list, - STATE(863), 1, - aux_sym_expression_list_repeat1, - STATE(1168), 1, - sym_type_arguments, - ACTIONS(1196), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1200), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1194), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1198), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [34763] = 16, - ACTIONS(286), 1, - sym_comment, - ACTIONS(366), 1, - anon_sym_LF, - ACTIONS(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, + ACTIONS(1192), 1, anon_sym_LT_DASH, - ACTIONS(1206), 1, - anon_sym_LPAREN, - STATE(778), 1, + STATE(473), 1, + aux_sym_const_spec_repeat1, + STATE(792), 1, sym_qualified_type, - STATE(803), 2, - sym_parameter_list, + STATE(1202), 2, + sym_parenthesized_type, sym__simple_type, - ACTIONS(371), 7, + ACTIONS(1180), 4, 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, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -38367,48 +38236,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [34827] = 19, + [34657] = 19, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, ACTIONS(286), 1, sym_comment, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1208), 1, - anon_sym_LF, - ACTIONS(1212), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1214), 1, + ACTIONS(1184), 1, anon_sym_COMMA, - ACTIONS(1216), 1, - anon_sym_EQ, - ACTIONS(1218), 1, + ACTIONS(1188), 1, anon_sym_LBRACK, - ACTIONS(1220), 1, + ACTIONS(1190), 1, anon_sym_STAR, - ACTIONS(1222), 1, + ACTIONS(1192), 1, anon_sym_LT_DASH, - STATE(747), 1, + ACTIONS(1194), 1, + anon_sym_LF, + ACTIONS(1198), 1, + anon_sym_EQ, + STATE(744), 1, aux_sym_const_spec_repeat1, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1185), 2, + STATE(1258), 2, sym_parenthesized_type, sym__simple_type, - ACTIONS(1210), 4, + ACTIONS(1196), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -38418,137 +38287,168 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [34897] = 13, + [34727] = 10, ACTIONS(286), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, - ACTIONS(1144), 1, - anon_sym_PIPE_PIPE, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1120), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1096), 5, + ACTIONS(1118), 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(911), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1140), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1136), 7, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [34955] = 12, - ACTIONS(286), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [34779] = 8, + ACTIONS(286), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(1138), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(915), 6, + ACTIONS(911), 24, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_STAR, anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_case, anon_sym_default, - anon_sym_PIPE_PIPE, - ACTIONS(1140), 6, + 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, - ACTIONS(1136), 7, - anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [34827] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + anon_sym_DOT, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(1069), 1, + anon_sym_LBRACK, + ACTIONS(1200), 1, + anon_sym_LBRACE, + STATE(565), 1, + sym_literal_value, + STATE(842), 1, + sym_type_arguments, + ACTIONS(637), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(635), 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, - [35011] = 19, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [34877] = 16, ACTIONS(286), 1, sym_comment, - ACTIONS(856), 1, + ACTIONS(362), 1, + anon_sym_LF, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 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, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1220), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1222), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, + anon_sym_map, + ACTIONS(1168), 1, + anon_sym_chan, + ACTIONS(1170), 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, + ACTIONS(1202), 1, + anon_sym_LPAREN, + STATE(783), 1, sym_qualified_type, - STATE(1218), 2, - sym_parenthesized_type, + STATE(812), 2, + sym_parameter_list, sym__simple_type, - ACTIONS(1226), 4, + ACTIONS(367), 7, anon_sym_SEMI, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - STATE(816), 9, + sym_raw_string_literal, + anon_sym_DQUOTE, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -38558,65 +38458,173 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [35081] = 8, + [34941] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(751), 1, + anon_sym_EQ, + ACTIONS(933), 1, + anon_sym_LT_DASH, + ACTIONS(935), 1, + anon_sym_COLON_EQ, + ACTIONS(1204), 1, + anon_sym_DOT, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1214), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_COLON, + ACTIONS(1226), 1, + anon_sym_AMP_AMP, + ACTIONS(1228), 1, + anon_sym_PIPE_PIPE, + STATE(545), 1, + sym_argument_list, + STATE(847), 1, + aux_sym_expression_list_repeat1, + STATE(1169), 1, + sym_type_arguments, + ACTIONS(1220), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1224), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1218), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1222), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1212), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [35013] = 12, ACTIONS(286), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(909), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - STATE(536), 1, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(915), 24, + ACTIONS(1120), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(911), 6, 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_PIPE_PIPE, + ACTIONS(1122), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1118), 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, + [35069] = 13, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1094), 1, + anon_sym_LF, + ACTIONS(1110), 1, + anon_sym_DOT, + ACTIONS(1112), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1126), 1, + anon_sym_PIPE_PIPE, + STATE(502), 1, + sym_argument_list, + STATE(1134), 1, + sym_type_arguments, + ACTIONS(1120), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1096), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1122), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [35129] = 8, + ACTIONS(1118), 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, + [35127] = 9, ACTIONS(286), 1, sym_comment, ACTIONS(909), 1, anon_sym_LF, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(911), 24, + ACTIONS(1118), 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(911), 17, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_STAR, anon_sym_RBRACE, anon_sym_PIPE, anon_sym_case, @@ -38624,12 +38632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -38641,32 +38643,32 @@ static const uint16_t ts_small_parse_table[] = { [35177] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - STATE(572), 1, + STATE(545), 1, sym_argument_list, - STATE(1168), 1, + STATE(1169), 1, sym_type_arguments, - ACTIONS(1196), 2, + ACTIONS(1220), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 5, + ACTIONS(911), 5, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - ACTIONS(1188), 5, + ACTIONS(1212), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 12, + ACTIONS(909), 12, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_COLON_EQ, @@ -38679,190 +38681,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35228] = 12, + [35228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, - anon_sym_PIPE, - STATE(572), 1, + STATE(545), 1, sym_argument_list, - STATE(1168), 1, + STATE(1169), 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, + 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(1188), 5, + ACTIONS(913), 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, - ACTIONS(913), 9, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35283] = 16, + [35275] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1096), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1094), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON_EQ, - 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, - [35346] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(627), 1, - anon_sym_LF, - ACTIONS(1232), 1, - anon_sym_LPAREN, - STATE(536), 1, - sym_special_argument_list, - ACTIONS(629), 26, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_case, - anon_sym_default, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [35387] = 13, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1128), 1, - anon_sym_DOT, - ACTIONS(1130), 1, - anon_sym_LPAREN, - ACTIONS(1134), 1, - anon_sym_LBRACK, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, - ACTIONS(1144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1234), 1, - anon_sym_LF, - STATE(536), 1, - sym_argument_list, - STATE(1156), 1, - sym_type_arguments, ACTIONS(1138), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1236), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - ACTIONS(1140), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, anon_sym_LT_EQ, - anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1136), 7, + ACTIONS(1130), 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, - [35444] = 8, + [35338] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - STATE(572), 1, + STATE(545), 1, sym_argument_list, - STATE(1168), 1, + STATE(1169), 1, sym_type_arguments, - ACTIONS(915), 7, + ACTIONS(911), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -38870,7 +38788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(913), 17, + ACTIONS(909), 17, anon_sym_COMMA, anon_sym_STAR, anon_sym_LT_DASH, @@ -38888,43 +38806,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35491] = 13, + [35385] = 13, ACTIONS(286), 1, sym_comment, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1144), 1, + ACTIONS(1126), 1, anon_sym_PIPE_PIPE, - ACTIONS(1238), 1, + ACTIONS(1232), 1, anon_sym_LF, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1120), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1240), 4, + ACTIONS(1234), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1140), 6, + ACTIONS(1122), 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(1118), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -38932,43 +38850,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35548] = 13, + [35442] = 13, ACTIONS(286), 1, sym_comment, - ACTIONS(1128), 1, + ACTIONS(1110), 1, anon_sym_DOT, - ACTIONS(1130), 1, + ACTIONS(1112), 1, anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1116), 1, anon_sym_LBRACK, - ACTIONS(1142), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1144), 1, + ACTIONS(1126), 1, anon_sym_PIPE_PIPE, - ACTIONS(1242), 1, + ACTIONS(1236), 1, anon_sym_LF, - STATE(536), 1, + STATE(502), 1, sym_argument_list, - STATE(1156), 1, + STATE(1134), 1, sym_type_arguments, - ACTIONS(1138), 4, + ACTIONS(1120), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1244), 4, + ACTIONS(1238), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - ACTIONS(1140), 6, + ACTIONS(1122), 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(1118), 7, anon_sym_STAR, anon_sym_AMP, anon_sym_SLASH, @@ -38976,170 +38894,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35605] = 8, - ACTIONS(3), 1, + [35499] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(1180), 1, - anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(635), 1, + anon_sym_LF, + ACTIONS(1240), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, - anon_sym_LBRACK, - STATE(572), 1, - sym_argument_list, - STATE(1168), 1, - sym_type_arguments, - ACTIONS(911), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(909), 17, + STATE(502), 1, + sym_special_argument_list, + ACTIONS(637), 26, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35652] = 14, + [35540] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1214), 1, anon_sym_PIPE, - STATE(572), 1, + ACTIONS(1226), 1, + anon_sym_AMP_AMP, + STATE(545), 1, sym_argument_list, - STATE(1168), 1, + STATE(1169), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(911), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1196), 2, + ACTIONS(1220), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1200), 2, + ACTIONS(1224), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1194), 3, + ACTIONS(1218), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1198), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(913), 5, + ACTIONS(909), 4, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_COLON_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1188), 5, + ACTIONS(1222), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1212), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35711] = 15, + [35601] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 1, + ACTIONS(1204), 1, anon_sym_DOT, - ACTIONS(1182), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - ACTIONS(1186), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1214), 1, anon_sym_PIPE, - ACTIONS(1202), 1, + STATE(545), 1, + sym_argument_list, + STATE(1169), 1, + sym_type_arguments, + ACTIONS(1220), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1218), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(911), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1212), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(909), 9, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, - STATE(572), 1, + anon_sym_PIPE_PIPE, + [35656] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1204), 1, + anon_sym_DOT, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1214), 1, + anon_sym_PIPE, + STATE(545), 1, sym_argument_list, - STATE(1168), 1, + STATE(1169), 1, sym_type_arguments, - ACTIONS(915), 2, + ACTIONS(911), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1196), 2, + ACTIONS(1220), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1200), 2, + ACTIONS(1224), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1194), 3, + ACTIONS(1218), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(913), 4, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, - anon_sym_PIPE_PIPE, - ACTIONS(1198), 4, + ACTIONS(1222), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1188), 5, + ACTIONS(909), 5, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1212), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35772] = 3, + [35715] = 13, ACTIONS(286), 1, sym_comment, - ACTIONS(965), 1, - anon_sym_LF, - ACTIONS(967), 27, - anon_sym_SEMI, + ACTIONS(1110), 1, anon_sym_DOT, + ACTIONS(1112), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1116), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_RBRACE, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1242), 1, + anon_sym_LF, + STATE(502), 1, + sym_argument_list, + STATE(1134), 1, + sym_type_arguments, + ACTIONS(1120), 4, anon_sym_PIPE, - anon_sym_case, - anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(1244), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + ACTIONS(1122), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [35808] = 18, + ACTIONS(1118), 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, + [35772] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -39160,11 +39129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1047), 1, + STATE(1081), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -39187,25 +39156,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [35874] = 3, - ACTIONS(286), 1, + [35838] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 1, - anon_sym_LF, - ACTIONS(1011), 27, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(935), 1, + anon_sym_COLON_EQ, + ACTIONS(1104), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1106), 1, 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, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1268), 1, + anon_sym_DOT, + ACTIONS(1272), 1, + anon_sym_LBRACE, + ACTIONS(1274), 1, + anon_sym_PIPE, + ACTIONS(1284), 1, + anon_sym_AMP_AMP, + ACTIONS(1286), 1, + anon_sym_PIPE_PIPE, + STATE(458), 1, + sym_argument_list, + STATE(847), 1, + aux_sym_expression_list_repeat1, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1278), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1282), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1276), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1280), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1270), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [35904] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1009), 1, + anon_sym_LF, + ACTIONS(1011), 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, @@ -39220,12 +39237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35910] = 3, + [35940] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1033), 1, + ACTIONS(1005), 1, anon_sym_LF, - ACTIONS(1035), 27, + ACTIONS(1007), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39253,62 +39270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [35946] = 20, - ACTIONS(3), 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, - 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, + [35976] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1033), 1, anon_sym_LF, - ACTIONS(1063), 27, + ACTIONS(1035), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39336,12 +39303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36052] = 3, + [36012] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1057), 1, + ACTIONS(1029), 1, anon_sym_LF, - ACTIONS(1059), 27, + ACTIONS(1031), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39369,12 +39336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36088] = 3, + [36048] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1053), 1, + ACTIONS(1065), 1, anon_sym_LF, - ACTIONS(1055), 27, + ACTIONS(1067), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39402,12 +39369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36124] = 3, + [36084] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(722), 1, + ACTIONS(1053), 1, anon_sym_LF, - ACTIONS(724), 27, + ACTIONS(1055), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39435,12 +39402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36160] = 3, + [36120] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(985), 1, + ACTIONS(949), 1, anon_sym_LF, - ACTIONS(987), 27, + ACTIONS(951), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39468,96 +39435,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36196] = 9, - ACTIONS(3), 1, + [36156] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(631), 1, + ACTIONS(989), 1, + anon_sym_LF, + ACTIONS(991), 27, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, - anon_sym_LBRACK, - STATE(434), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(627), 17, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_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, - 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, + [36192] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1037), 1, anon_sym_LF, - ACTIONS(1047), 27, + ACTIONS(1039), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39585,60 +39501,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36340] = 18, - ACTIONS(3), 1, + [36228] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(933), 1, - anon_sym_COLON_EQ, - ACTIONS(1104), 1, + ACTIONS(1057), 1, + anon_sym_LF, + ACTIONS(1059), 27, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1184), 1, anon_sym_COMMA, - ACTIONS(1282), 1, - anon_sym_DOT, - ACTIONS(1286), 1, - anon_sym_LBRACE, - ACTIONS(1288), 1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_AMP_AMP, - ACTIONS(1300), 1, - anon_sym_PIPE_PIPE, - STATE(429), 1, - sym_argument_list, - STATE(863), 1, - aux_sym_expression_list_repeat1, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1292), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1290), 3, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_STAR, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36406] = 3, + 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, + [36264] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(635), 1, anon_sym_LF, - ACTIONS(1043), 27, + ACTIONS(637), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39666,12 +39567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36442] = 3, + [36300] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(802), 1, + ACTIONS(1041), 1, anon_sym_LF, - ACTIONS(804), 27, + ACTIONS(1043), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39699,12 +39600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36478] = 3, + [36336] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1025), 1, + ACTIONS(1021), 1, anon_sym_LF, - ACTIONS(1027), 27, + ACTIONS(1023), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39732,12 +39633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36514] = 3, + [36372] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(953), 1, + ACTIONS(1013), 1, anon_sym_LF, - ACTIONS(955), 27, + ACTIONS(1015), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39765,7 +39666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36550] = 18, + [36408] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -39782,15 +39683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1302), 1, + ACTIONS(1288), 1, anon_sym_RPAREN, - ACTIONS(1304), 1, + ACTIONS(1290), 1, anon_sym_COMMA, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1105), 1, + STATE(1045), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -39813,52 +39714,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36616] = 10, - ACTIONS(3), 1, + [36474] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(618), 1, - anon_sym_COMMA, - ACTIONS(858), 1, + ACTIONS(1001), 1, + anon_sym_LF, + ACTIONS(1003), 27, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1069), 1, - anon_sym_LBRACK, - STATE(434), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(873), 2, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(629), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(627), 15, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_case, + anon_sym_default, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + anon_sym_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36666] = 3, + [36510] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1049), 1, + ACTIONS(997), 1, anon_sym_LF, - ACTIONS(1051), 27, + ACTIONS(999), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -39886,7 +39780,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36702] = 18, + [36546] = 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, + [36582] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -39903,15 +39830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1306), 1, + ACTIONS(1292), 1, anon_sym_RPAREN, - ACTIONS(1308), 1, + ACTIONS(1294), 1, anon_sym_COMMA, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1110), 1, + STATE(1057), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -39934,7 +39861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36768] = 3, + [36648] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(1017), 1, @@ -39967,12 +39894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36804] = 3, + [36684] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1065), 1, + ACTIONS(953), 1, anon_sym_LF, - ACTIONS(1067), 27, + ACTIONS(955), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40000,12 +39927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36840] = 3, + [36720] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1045), 1, anon_sym_LF, - ACTIONS(1031), 27, + ACTIONS(1047), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40033,60 +39960,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36876] = 18, - ACTIONS(3), 1, + [36756] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1102), 1, + ACTIONS(1049), 1, + anon_sym_LF, + ACTIONS(1051), 27, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1250), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1254), 1, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(1264), 1, - anon_sym_AMP_AMP, - ACTIONS(1266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1310), 1, - anon_sym_RPAREN, - ACTIONS(1312), 1, - anon_sym_COMMA, - STATE(429), 1, - sym_argument_list, - STATE(1056), 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_case, + anon_sym_default, 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_AMP, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [36942] = 3, + 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, + [36792] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1001), 1, + ACTIONS(1061), 1, anon_sym_LF, - ACTIONS(1003), 27, + ACTIONS(1063), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40114,12 +40026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36978] = 3, + [36828] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(985), 1, anon_sym_LF, - ACTIONS(999), 27, + ACTIONS(987), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40147,12 +40059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37014] = 3, + [36864] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(993), 1, + ACTIONS(965), 1, anon_sym_LF, - ACTIONS(995), 27, + ACTIONS(967), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40180,60 +40092,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37050] = 18, + [36900] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1102), 1, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(618), 1, + anon_sym_RPAREN, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(872), 1, + anon_sym_COMMA, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1296), 1, anon_sym_DOT, - ACTIONS(1104), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1300), 1, anon_sym_LBRACK, - ACTIONS(1250), 1, + ACTIONS(1302), 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(1314), 1, - anon_sym_RPAREN, - ACTIONS(1316), 1, - anon_sym_COMMA, - STATE(429), 1, - sym_argument_list, - STATE(1045), 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, + ACTIONS(1304), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [37116] = 3, + STATE(670), 1, + aux_sym_parameter_declaration_repeat1, + STATE(792), 1, + sym_qualified_type, + STATE(842), 1, + sym_type_arguments, + STATE(1088), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(824), 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, + [36970] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(969), 1, anon_sym_LF, - ACTIONS(991), 27, + ACTIONS(971), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40261,94 +40175,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37152] = 17, + [37006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1104), 1, + ACTIONS(330), 1, + anon_sym_LBRACE, + ACTIONS(639), 1, + anon_sym_DOT, + ACTIONS(880), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1069), 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, + STATE(460), 1, + sym_literal_value, + STATE(842), 1, sym_type_arguments, - ACTIONS(933), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1114), 2, + ACTIONS(637), 5, + anon_sym_PIPE, 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_LF, - ACTIONS(975), 27, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(635), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, 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, - [37252] = 5, + [37054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 1, + ACTIONS(1306), 1, anon_sym_LPAREN, - STATE(572), 1, + STATE(545), 1, sym_special_argument_list, - ACTIONS(629), 7, + ACTIONS(637), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40356,7 +40229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 19, + ACTIONS(635), 19, anon_sym_DOT, anon_sym_COMMA, anon_sym_LBRACK, @@ -40376,12 +40249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37292] = 3, + [37094] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(961), 1, + ACTIONS(957), 1, anon_sym_LF, - ACTIONS(963), 27, + ACTIONS(959), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40409,12 +40282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37328] = 3, + [37130] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(981), 1, + ACTIONS(973), 1, anon_sym_LF, - ACTIONS(983), 27, + ACTIONS(975), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40442,12 +40315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37364] = 3, + [37166] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(969), 1, + ACTIONS(977), 1, anon_sym_LF, - ACTIONS(971), 27, + ACTIONS(979), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40475,12 +40348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37400] = 3, + [37202] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(957), 1, + ACTIONS(961), 1, anon_sym_LF, - ACTIONS(959), 27, + ACTIONS(963), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40508,12 +40381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37436] = 3, + [37238] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(1025), 1, anon_sym_LF, - ACTIONS(1039), 27, + ACTIONS(1027), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40541,12 +40414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37472] = 3, + [37274] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1021), 1, + ACTIONS(901), 1, anon_sym_LF, - ACTIONS(1023), 27, + ACTIONS(903), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40574,73 +40447,7 @@ 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, - anon_sym_LF, - ACTIONS(951), 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, - [37544] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(977), 1, - anon_sym_LF, - ACTIONS(979), 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, - [37580] = 18, + [37310] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -40657,15 +40464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1320), 1, + ACTIONS(1308), 1, anon_sym_RPAREN, - ACTIONS(1322), 1, + ACTIONS(1310), 1, anon_sym_COMMA, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1086), 1, + STATE(1106), 1, aux_sym_argument_list_repeat1, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -40688,12 +40495,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [37646] = 3, + [37376] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, + anon_sym_LBRACE, + ACTIONS(618), 1, + anon_sym_COMMA, + ACTIONS(865), 1, + anon_sym_DOT, + ACTIONS(1069), 1, + anon_sym_LBRACK, + STATE(460), 1, + sym_literal_value, + STATE(842), 1, + sym_type_arguments, + ACTIONS(880), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(637), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(635), 15, + anon_sym_STAR, + anon_sym_COLON, + 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, + [37426] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1005), 1, + ACTIONS(847), 1, anon_sym_LF, - ACTIONS(1007), 27, + ACTIONS(849), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40721,12 +40568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37682] = 3, + [37462] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(750), 1, + ACTIONS(697), 1, anon_sym_LF, - ACTIONS(752), 27, + ACTIONS(699), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40754,12 +40601,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37718] = 3, + [37498] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1304), 1, + anon_sym_STAR, + ACTIONS(1312), 1, + anon_sym_LPAREN, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, + sym_qualified_type, + STATE(819), 2, + sym_parameter_list, + sym__simple_type, + ACTIONS(362), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + STATE(824), 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, + [37558] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(690), 1, + ACTIONS(673), 1, anon_sym_LF, - ACTIONS(692), 27, + ACTIONS(675), 27, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, @@ -40787,59 +40679,201 @@ 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, + [37594] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - anon_sym_LF, - ACTIONS(629), 27, - anon_sym_SEMI, + 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, + ACTIONS(1316), 1, + anon_sym_RPAREN, + ACTIONS(1318), 1, anon_sym_COMMA, + STATE(458), 1, + sym_argument_list, + STATE(1092), 1, + aux_sym_argument_list_repeat1, + STATE(1157), 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, + [37660] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + STATE(458), 1, + sym_argument_list, + STATE(847), 1, + aux_sym_expression_list_repeat1, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(935), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1132), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1140), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1136), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1130), 5, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [37724] = 18, + 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, - anon_sym_case, - anon_sym_default, + 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(458), 1, + sym_argument_list, + STATE(1066), 1, + aux_sym_argument_list_repeat1, + STATE(1157), 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, + [37790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 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, 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, - [37790] = 18, + [37825] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1324), 1, sym_identifier, @@ -40849,15 +40883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1026), 2, + STATE(1027), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -40867,42 +40901,10 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [37855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(692), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(690), 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, [37890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 7, + ACTIONS(1031), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40910,7 +40912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1021), 20, + ACTIONS(1029), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -40934,7 +40936,7 @@ static const uint16_t ts_small_parse_table[] = { [37925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 7, + ACTIONS(1043), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40942,7 +40944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1037), 20, + ACTIONS(1041), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -40966,7 +40968,7 @@ static const uint16_t ts_small_parse_table[] = { [37960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 7, + ACTIONS(995), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -40974,7 +40976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(957), 20, + ACTIONS(993), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -40998,7 +41000,7 @@ static const uint16_t ts_small_parse_table[] = { [37995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 7, + ACTIONS(991), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41006,7 +41008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(969), 20, + ACTIONS(989), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41030,7 +41032,7 @@ static const uint16_t ts_small_parse_table[] = { [38030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 7, + ACTIONS(675), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41038,7 +41040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(981), 20, + ACTIONS(673), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41059,44 +41061,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38065] = 18, + [38065] = 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, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 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, + ACTIONS(863), 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, + anon_sym_LPAREN, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, + anon_sym_LBRACK, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + STATE(444), 1, + sym_block, + STATE(792), 1, sym_qualified_type, - STATE(1080), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(1083), 2, - sym_parenthesized_type, + STATE(860), 2, + sym_parameter_list, sym__simple_type, - STATE(816), 9, + ACTIONS(362), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -41106,10 +41107,10 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [38130] = 3, + [38128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 7, + ACTIONS(1059), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41117,7 +41118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(961), 20, + ACTIONS(1057), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41138,10 +41139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38165] = 3, + [38163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(975), 7, + ACTIONS(699), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41149,7 +41150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(973), 20, + ACTIONS(697), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41170,10 +41171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38200] = 3, + [38198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 7, + ACTIONS(999), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41181,7 +41182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(989), 20, + ACTIONS(997), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41202,10 +41203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38235] = 3, + [38233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 7, + ACTIONS(1039), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41213,7 +41214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(993), 20, + ACTIONS(1037), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41234,24 +41235,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38270] = 3, + [38268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 7, - anon_sym_EQ, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(618), 1, + anon_sym_RBRACK, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(872), 1, + anon_sym_COMMA, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1300), 1, + anon_sym_LBRACK, + ACTIONS(1304), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + anon_sym_DOT, + STATE(670), 1, + aux_sym_parameter_declaration_repeat1, + STATE(792), 1, + sym_qualified_type, + STATE(842), 1, + sym_type_arguments, + STATE(1088), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(824), 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, + [38335] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + anon_sym_DOT, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(1069), 1, + anon_sym_LBRACK, + STATE(460), 1, + sym_literal_value, + STATE(842), 1, + sym_type_arguments, + ACTIONS(637), 5, anon_sym_PIPE, - anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(997), 20, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(635), 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, @@ -41266,61 +41320,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38305] = 3, + [38380] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 7, - anon_sym_EQ, + 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, - anon_sym_COLON, + ACTIONS(1264), 1, + anon_sym_AMP_AMP, + ACTIONS(1266), 1, + anon_sym_PIPE_PIPE, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 20, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1347), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, - anon_sym_COLON_EQ, + ACTIONS(1256), 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(1260), 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, - [38340] = 8, + ACTIONS(1252), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [38441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(858), 1, - anon_sym_DOT, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, - anon_sym_LBRACK, - STATE(434), 1, - sym_literal_value, - STATE(817), 1, - sym_type_arguments, - ACTIONS(629), 5, + ACTIONS(979), 7, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_COLON, anon_sym_AMP, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(627), 17, + ACTIONS(977), 20, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_LT_DASH, anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, @@ -41335,10 +41397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38385] = 3, + [38476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 7, + ACTIONS(637), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41346,7 +41408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(722), 20, + ACTIONS(635), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41367,56 +41429,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38420] = 17, + [38511] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, - anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1336), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1100), 1, - aux_sym_expression_list_repeat1, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1349), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38483] = 3, + [38570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 7, + ACTIONS(1035), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41424,7 +41484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1029), 20, + ACTIONS(1033), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41445,10 +41505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38518] = 3, + [38605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 7, + ACTIONS(1067), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41456,7 +41516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1017), 20, + ACTIONS(1065), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41477,74 +41537,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38553] = 3, + [38640] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(911), 3, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1049), 20, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1270), 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(909), 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, - [38588] = 3, + [38689] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 7, - anon_sym_EQ, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1274), 1, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_SLASH, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(911), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(965), 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(1278), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(1270), 5, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, + ACTIONS(909), 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, - [38623] = 3, + [38742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 7, + ACTIONS(1003), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41552,7 +41628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(953), 20, + ACTIONS(1001), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41573,10 +41649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38658] = 3, + [38777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 7, + ACTIONS(1015), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41584,7 +41660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1025), 20, + ACTIONS(1013), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41605,49 +41681,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38693] = 10, + [38812] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(935), 1, + anon_sym_SEMI, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1134), 1, + anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1351), 1, anon_sym_DOT, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(847), 1, + aux_sym_expression_list_repeat1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 3, - anon_sym_PIPE, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1284), 5, + ACTIONS(1136), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 12, + [38875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(949), 20, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, + 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, - [38742] = 3, + [38910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 7, + ACTIONS(1051), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41655,7 +41770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1041), 20, + ACTIONS(1049), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41676,181 +41791,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38777] = 12, + [38945] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1274), 1, anon_sym_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(915), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1292), 2, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1290), 3, + ACTIONS(1282), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1284), 5, + ACTIONS(1280), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(909), 5, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_COLON_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1270), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 9, + [39000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(975), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(973), 20, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, + 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, - [38830] = 13, + [39035] = 3, ACTIONS(3), 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(959), 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, + 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, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 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_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, + [39070] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1274), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1284), 1, anon_sym_AMP_AMP, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(913), 4, + ACTIONS(909), 4, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_COLON_EQ, anon_sym_PIPE_PIPE, - ACTIONS(1294), 4, + ACTIONS(1280), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1270), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [38942] = 16, + [39127] = 3, 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, + ACTIONS(971), 7, + anon_sym_EQ, 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_COLON, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1338), 2, - anon_sym_RPAREN, + ACTIONS(969), 20, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(1256), 3, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + anon_sym_COLON_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [39162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 7, + ACTIONS(967), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41858,7 +41983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1045), 20, + ACTIONS(965), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41879,10 +42004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39038] = 3, + [39197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 7, + ACTIONS(1011), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41890,7 +42015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1001), 20, + ACTIONS(1009), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41911,10 +42036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39073] = 3, + [39232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 7, + ACTIONS(1007), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41922,7 +42047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(985), 20, + ACTIONS(1005), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41943,10 +42068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39108] = 3, + [39267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 7, + ACTIONS(1019), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41954,7 +42079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1005), 20, + ACTIONS(1017), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -41975,10 +42100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39143] = 3, + [39302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(752), 7, + ACTIONS(955), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -41986,7 +42111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(750), 20, + ACTIONS(953), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42007,10 +42132,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39178] = 3, + [39337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(951), 7, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1304), 1, + anon_sym_STAR, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1353), 1, + anon_sym_RPAREN, + ACTIONS(1355), 1, + anon_sym_COMMA, + STATE(792), 1, + sym_qualified_type, + STATE(1071), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1091), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(824), 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, + [39402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(987), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42018,7 +42190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(949), 20, + ACTIONS(985), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42039,56 +42211,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39213] = 17, + [39437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, - anon_sym_SEMI, - ACTIONS(1104), 1, + ACTIONS(963), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(961), 20, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1106), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1118), 1, - anon_sym_PIPE, - ACTIONS(1126), 1, + 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, - ACTIONS(1184), 1, + anon_sym_PIPE_PIPE, + [39472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1027), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1025), 20, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(1230), 1, + 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, - ACTIONS(1340), 1, + [39507] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1102), 1, anon_sym_DOT, - STATE(429), 1, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1254), 1, + anon_sym_PIPE, + ACTIONS(1264), 1, + anon_sym_AMP_AMP, + STATE(458), 1, sym_argument_list, - STATE(863), 1, - aux_sym_expression_list_repeat1, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(909), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39276] = 3, + [39564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 7, + ACTIONS(903), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42096,7 +42329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(977), 20, + ACTIONS(901), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42117,10 +42350,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39311] = 3, + [39599] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 7, + ACTIONS(1102), 1, + anon_sym_DOT, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1254), 1, + anon_sym_PIPE, + STATE(458), 1, + sym_argument_list, + STATE(1157), 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(909), 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, + [39654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42128,7 +42403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1065), 20, + ACTIONS(1021), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42149,10 +42424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39346] = 3, + [39689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 7, + ACTIONS(1063), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42160,7 +42435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1053), 20, + ACTIONS(1061), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42181,58 +42456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39381] = 19, - ACTIONS(3), 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, + [39724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 7, + ACTIONS(849), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42240,7 +42467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1009), 20, + ACTIONS(847), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42261,53 +42488,7 @@ 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, + [39759] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -42316,56 +42497,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(429), 1, + ACTIONS(1254), 1, + anon_sym_PIPE, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, + ACTIONS(911), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(915), 3, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1256), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 12, + ACTIONS(909), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39595] = 18, + [39812] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1324), 1, sym_identifier, @@ -42375,15 +42558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(1359), 1, anon_sym_COMMA, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(1091), 2, + STATE(1077), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -42393,10 +42576,56 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [39660] = 3, + [39877] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1274), 1, + anon_sym_PIPE, + ACTIONS(1284), 1, + anon_sym_AMP_AMP, + ACTIONS(1286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1361), 1, + anon_sym_COMMA, + STATE(458), 1, + sym_argument_list, + STATE(1086), 1, + aux_sym_expression_list_repeat1, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1278), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1282), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1276), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1280), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1270), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [39940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(804), 7, + ACTIONS(1047), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_COLON, @@ -42404,7 +42633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(802), 20, + ACTIONS(1045), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -42425,7 +42654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39695] = 12, + [39975] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -42434,96 +42663,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1254), 1, - anon_sym_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(915), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1256), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, + ACTIONS(911), 3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - ACTIONS(913), 9, + ACTIONS(909), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [39748] = 13, + [40024] = 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(1254), 1, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, anon_sym_PIPE, - STATE(429), 1, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1363), 1, + anon_sym_RBRACK, + ACTIONS(1365), 1, + anon_sym_COLON, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(913), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39803] = 14, + [40084] = 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(1128), 1, + anon_sym_DOT, ACTIONS(1254), 1, anon_sym_PIPE, ACTIONS(1264), 1, anon_sym_AMP_AMP, - STATE(429), 1, + ACTIONS(1266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(1369), 1, + anon_sym_COMMA, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -42535,11 +42770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(913), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -42551,271 +42781,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39860] = 3, + [40144] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 7, - anon_sym_EQ, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1371), 1, + anon_sym_RBRACK, + ACTIONS(1373), 1, anon_sym_COLON, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1033), 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(1136), 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(1138), 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, - [39895] = 15, + ACTIONS(1130), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [40204] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1304), 1, + anon_sym_STAR, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1375), 1, + anon_sym_RPAREN, + STATE(792), 1, + sym_qualified_type, + STATE(1071), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1173), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(824), 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, + [40266] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1377), 1, + anon_sym_RBRACK, + ACTIONS(1379), 1, + anon_sym_COLON, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1361), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [39954] = 3, + [40326] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 7, - anon_sym_EQ, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1381), 1, + anon_sym_RBRACK, + ACTIONS(1383), 1, anon_sym_COLON, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1061), 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(1136), 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(1138), 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, - [39989] = 3, + ACTIONS(1130), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [40386] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 7, - anon_sym_EQ, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1057), 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(1242), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1136), 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(1138), 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, - [40024] = 16, + ACTIONS(1130), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [40444] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1363), 1, - anon_sym_RPAREN, - ACTIONS(1365), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1385), 1, + anon_sym_RBRACK, + ACTIONS(1387), 1, + anon_sym_COLON, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40084] = 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(1367), 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, - [40146] = 17, + [40504] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1324), 1, sym_identifier, ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1369), 1, + ACTIONS(1389), 1, anon_sym_RPAREN, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(1123), 2, + STATE(1173), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -42825,58 +43090,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [40208] = 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(1371), 1, - anon_sym_RBRACK, - ACTIONS(1373), 1, - anon_sym_COLON, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1120), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(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, - [40268] = 15, + [40566] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1254), 1, anon_sym_PIPE, @@ -42884,9 +43105,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1094), 2, anon_sym_RPAREN, @@ -42912,174 +43133,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40326] = 16, + [40624] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 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, - 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, - [40386] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_AMP_AMP, - ACTIONS(1300), 1, - anon_sym_PIPE_PIPE, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(877), 1, - sym_block, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40446] = 16, + [40684] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_RBRACK, - ACTIONS(1381), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1395), 1, + anon_sym_RPAREN, + ACTIONS(1397), 1, + anon_sym_COMMA, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40506] = 17, + [40744] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1324), 1, sym_identifier, ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1383), 1, + ACTIONS(1399), 1, anon_sym_RPAREN, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(1123), 2, + STATE(1173), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -43089,14 +43266,14 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [40568] = 16, + [40806] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1254), 1, anon_sym_PIPE, @@ -43104,13 +43281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1385), 1, + ACTIONS(1401), 1, anon_sym_RPAREN, - ACTIONS(1387), 1, + ACTIONS(1403), 1, anon_sym_COMMA, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -43133,569 +43310,701 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40628] = 16, + [40866] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1389), 1, + ACTIONS(1405), 1, anon_sym_RBRACK, - ACTIONS(1391), 1, + ACTIONS(1407), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40688] = 16, + [40926] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1274), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1284), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1286), 1, anon_sym_PIPE_PIPE, - ACTIONS(1393), 1, - anon_sym_RBRACK, - ACTIONS(1395), 1, - anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1094), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1280), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1270), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40748] = 16, + [40984] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1397), 1, - anon_sym_RBRACK, - ACTIONS(1399), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1409), 1, + anon_sym_RPAREN, + ACTIONS(1411), 1, + anon_sym_COMMA, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40808] = 16, + [41044] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(31), 1, + anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1274), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1284), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1286), 1, anon_sym_PIPE_PIPE, - ACTIONS(1401), 1, - anon_sym_RBRACK, - ACTIONS(1403), 1, - anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(861), 1, + sym_block, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1280), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1270), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40868] = 16, + [41104] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1405), 1, + ACTIONS(1413), 1, anon_sym_RBRACK, - ACTIONS(1407), 1, + ACTIONS(1415), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40928] = 15, + [41164] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1417), 1, + anon_sym_RPAREN, + ACTIONS(1419), 1, + anon_sym_COMMA, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1242), 2, - anon_sym_SEMI, + 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, + [41224] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1421), 1, + anon_sym_RBRACK, + ACTIONS(1423), 1, anon_sym_COLON, - ACTIONS(1120), 3, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1132), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1140), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [40986] = 16, + [41284] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1409), 1, + ACTIONS(1425), 1, anon_sym_RBRACK, - ACTIONS(1411), 1, + ACTIONS(1427), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41046] = 16, + [41344] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1413), 1, + ACTIONS(1429), 1, anon_sym_RBRACK, - ACTIONS(1415), 1, + ACTIONS(1431), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41106] = 16, + [41404] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1304), 1, + anon_sym_STAR, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(792), 1, + sym_qualified_type, + STATE(1071), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1173), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(824), 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, + [41466] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1417), 1, + ACTIONS(1435), 1, anon_sym_RBRACK, - ACTIONS(1419), 1, + ACTIONS(1437), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41166] = 16, + [41526] = 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(863), 1, + sym_identifier, + ACTIONS(1332), 1, + anon_sym_LPAREN, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, + anon_sym_LBRACK, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + STATE(792), 1, + sym_qualified_type, + STATE(819), 2, + sym_parameter_list, + sym__simple_type, + ACTIONS(362), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + STATE(824), 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, + [41584] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1421), 1, + ACTIONS(1439), 1, anon_sym_RBRACK, - ACTIONS(1423), 1, + ACTIONS(1441), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41226] = 16, + [41644] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(1427), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1443), 1, + anon_sym_RBRACK, + ACTIONS(1445), 1, + anon_sym_COLON, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41286] = 16, + [41704] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, + ACTIONS(1447), 1, anon_sym_RBRACK, - ACTIONS(1431), 1, + ACTIONS(1449), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41346] = 17, + [41764] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1324), 1, sym_identifier, ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1433), 1, + ACTIONS(1451), 1, anon_sym_RPAREN, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(1123), 2, + STATE(1173), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -43705,130 +44014,130 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [41408] = 16, + [41826] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1435), 1, + ACTIONS(1453), 1, anon_sym_RBRACK, - ACTIONS(1437), 1, + ACTIONS(1455), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41468] = 16, + [41886] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1439), 1, + ACTIONS(1457), 1, anon_sym_RBRACK, - ACTIONS(1441), 1, + ACTIONS(1459), 1, anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41528] = 17, + [41946] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1324), 1, sym_identifier, ACTIONS(1330), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1443), 1, + ACTIONS(1461), 1, anon_sym_RPAREN, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(1123), 2, + STATE(1173), 2, sym_parameter_declaration, sym_variadic_parameter_declaration, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -43838,146 +44147,144 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [41590] = 17, + [42008] = 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, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1324), 1, - sym_identifier, - ACTIONS(1330), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1445), 1, - anon_sym_RPAREN, - STATE(789), 1, - sym_qualified_type, - STATE(1083), 2, - sym_parenthesized_type, - sym__simple_type, - STATE(1123), 2, - sym_parameter_declaration, - sym_variadic_parameter_declaration, - STATE(816), 9, - sym_generic_type, - sym_pointer_type, - sym_array_type, - sym_slice_type, - sym_struct_type, - sym_interface_type, - sym_map_type, - sym_channel_type, - sym_function_type, - [41652] = 16, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1463), 1, + anon_sym_RBRACK, + ACTIONS(1465), 1, + anon_sym_COLON, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1132), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1140), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1136), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1130), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [42068] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1447), 1, - anon_sym_RBRACK, - ACTIONS(1449), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1467), 1, + anon_sym_RPAREN, + ACTIONS(1469), 1, + anon_sym_COMMA, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41712] = 15, + [42128] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1471), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1094), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(1292), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41770] = 16, + [42185] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1254), 1, anon_sym_PIPE, @@ -43985,13 +44292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, + ACTIONS(1473), 1, anon_sym_RPAREN, - ACTIONS(1453), 1, - anon_sym_COMMA, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -44014,528 +44319,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [41830] = 16, + [42242] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1274), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1284), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1286), 1, anon_sym_PIPE_PIPE, - ACTIONS(1455), 1, - anon_sym_RBRACK, - ACTIONS(1457), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1280), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1270), 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, + [42299] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1459), 1, + ACTIONS(1477), 1, anon_sym_RBRACK, - ACTIONS(1461), 1, - anon_sym_COLON, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42008] = 16, + [42356] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1463), 1, - anon_sym_RPAREN, - ACTIONS(1465), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1479), 1, + anon_sym_SEMI, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42068] = 16, + [42413] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1467), 1, - anon_sym_RPAREN, - ACTIONS(1469), 1, - anon_sym_COMMA, - STATE(429), 1, + ACTIONS(1481), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42128] = 15, + [42470] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1471), 1, - anon_sym_COLON, - STATE(429), 1, + ACTIONS(1483), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 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, + [42527] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1477), 1, - anon_sym_RPAREN, - STATE(429), 1, + ACTIONS(1485), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42301] = 15, + [42584] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1288), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1479), 1, - anon_sym_LBRACE, - STATE(429), 1, + ACTIONS(1487), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42358] = 15, + [42641] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_struct, + ACTIONS(33), 1, + anon_sym_interface, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, + anon_sym_map, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, + anon_sym_LPAREN, + ACTIONS(1304), 1, + anon_sym_STAR, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_DOT_DOT_DOT, + STATE(792), 1, + sym_qualified_type, + STATE(1071), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(1173), 2, + sym_parameter_declaration, + sym_variadic_parameter_declaration, + STATE(824), 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, + [42700] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1481), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1489), 1, + anon_sym_RPAREN, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42415] = 15, + [42757] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1483), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1491), 1, + anon_sym_SEMI, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42472] = 15, + [42814] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1485), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1493), 1, + anon_sym_COLON, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42529] = 15, + [42871] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1254), 1, anon_sym_PIPE, @@ -44543,11 +44797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1487), 1, + ACTIONS(1495), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -44570,548 +44824,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42586] = 15, + [42928] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1489), 1, + ACTIONS(1497), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42643] = 15, + [42985] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1491), 1, + ACTIONS(1499), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42700] = 15, + [43042] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1493), 1, + ACTIONS(1501), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 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, + [43099] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1507), 1, - anon_sym_RBRACK, - STATE(429), 1, + ACTIONS(1503), 1, + anon_sym_RPAREN, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [42875] = 15, + [43156] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1509), 1, + ACTIONS(1505), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 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, + [43213] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1242), 1, - anon_sym_LBRACE, - ACTIONS(1288), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1298), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1300), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - STATE(429), 1, + ACTIONS(1507), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1292), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1296), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1290), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1294), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43048] = 15, + [43270] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1511), 1, + ACTIONS(1509), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43105] = 15, + [43327] = 17, ACTIONS(3), 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, - sym_type_arguments, - ACTIONS(1258), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1262), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1256), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1260), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1252), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [43162] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_func, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, + anon_sym_map, + ACTIONS(1168), 1, + anon_sym_chan, + ACTIONS(1511), 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(1513), 1, + anon_sym_COMMA, ACTIONS(1515), 1, - anon_sym_RBRACK, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1120), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(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, - [43219] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1118), 1, - anon_sym_PIPE, - ACTIONS(1126), 1, - anon_sym_AMP_AMP, - ACTIONS(1230), 1, - anon_sym_PIPE_PIPE, + anon_sym_EQ, ACTIONS(1517), 1, - anon_sym_RBRACK, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1120), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1112), 5, + anon_sym_LBRACK, + ACTIONS(1519), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [43276] = 17, + ACTIONS(1521), 1, + anon_sym_LT_DASH, + STATE(767), 1, + aux_sym_const_spec_repeat1, + STATE(783), 1, + sym_qualified_type, + STATE(869), 2, + sym_parenthesized_type, + sym__simple_type, + STATE(807), 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, + [43388] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1513), 1, anon_sym_COMMA, - ACTIONS(1501), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1521), 1, anon_sym_LT_DASH, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_EQ, - STATE(769), 1, + STATE(648), 1, aux_sym_const_spec_repeat1, - STATE(778), 1, + STATE(783), 1, sym_qualified_type, - STATE(865), 2, + STATE(856), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45121,182 +45206,182 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [43337] = 15, + [43449] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43394] = 15, + [43506] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1523), 1, + ACTIONS(1527), 1, anon_sym_RBRACK, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43451] = 15, + [43563] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1242), 1, + anon_sym_LBRACE, + ACTIONS(1274), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1284), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1286), 1, anon_sym_PIPE_PIPE, - ACTIONS(1525), 1, - anon_sym_RPAREN, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1280), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1270), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43508] = 15, + [43620] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, ACTIONS(1230), 1, anon_sym_PIPE_PIPE, - ACTIONS(1527), 1, - anon_sym_SEMI, - STATE(429), 1, + ACTIONS(1529), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43565] = 15, + [43677] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1104), 1, anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1254), 1, anon_sym_PIPE, @@ -45304,11 +45389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(1266), 1, anon_sym_PIPE_PIPE, - ACTIONS(1529), 1, + ACTIONS(1531), 1, anon_sym_RPAREN, - STATE(429), 1, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, ACTIONS(1258), 2, anon_sym_AMP, @@ -45331,132 +45416,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_CARET, - [43622] = 15, - ACTIONS(3), 1, + [43734] = 16, + ACTIONS(286), 1, sym_comment, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_func, + ACTIONS(1158), 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(1531), 1, - anon_sym_RBRACK, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1120), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1122), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1160), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [43679] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, + anon_sym_map, + ACTIONS(1168), 1, + anon_sym_chan, + ACTIONS(1170), 1, + anon_sym_LT_DASH, + ACTIONS(1202), 1, anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1288), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_AMP_AMP, - ACTIONS(1300), 1, - anon_sym_PIPE_PIPE, ACTIONS(1533), 1, - anon_sym_LBRACE, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1292), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1296), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1290), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1294), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_CARET, - [43736] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1110), 1, - anon_sym_DOT, - ACTIONS(1118), 1, - anon_sym_PIPE, - ACTIONS(1126), 1, - anon_sym_AMP_AMP, - ACTIONS(1230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1535), 1, - anon_sym_RBRACK, - STATE(429), 1, - sym_argument_list, - STATE(1129), 1, - sym_type_arguments, - ACTIONS(1114), 2, - anon_sym_AMP, - anon_sym_SLASH, - ACTIONS(1124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1120), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(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, + anon_sym_LF, + STATE(783), 1, + sym_qualified_type, + ACTIONS(1535), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + STATE(1050), 2, + sym_parameter_list, + sym__simple_type, + STATE(807), 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, [43793] = 15, ACTIONS(3), 1, sym_comment, @@ -45464,36 +45466,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1274), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1284), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1286), 1, anon_sym_PIPE_PIPE, ACTIONS(1537), 1, - anon_sym_RBRACK, - STATE(429), 1, + anon_sym_LBRACE, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1278), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1282), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1276), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1280), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1270), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, @@ -45506,36 +45508,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1254), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(1264), 1, anon_sym_AMP_AMP, - ACTIONS(1230), 1, + ACTIONS(1266), 1, anon_sym_PIPE_PIPE, ACTIONS(1539), 1, - anon_sym_RBRACK, - STATE(429), 1, + anon_sym_RPAREN, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1114), 2, + ACTIONS(1258), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1124), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1120), 3, + ACTIONS(1256), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1122), 4, + ACTIONS(1260), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1112), 5, + ACTIONS(1252), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, @@ -45548,36 +45550,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1254), 1, + ACTIONS(1134), 1, anon_sym_PIPE, - ACTIONS(1264), 1, + ACTIONS(1142), 1, anon_sym_AMP_AMP, - ACTIONS(1266), 1, + ACTIONS(1230), 1, anon_sym_PIPE_PIPE, ACTIONS(1541), 1, - anon_sym_RPAREN, - STATE(429), 1, + anon_sym_RBRACK, + STATE(458), 1, sym_argument_list, - STATE(1129), 1, + STATE(1157), 1, sym_type_arguments, - ACTIONS(1258), 2, + ACTIONS(1132), 2, anon_sym_AMP, anon_sym_SLASH, - ACTIONS(1262), 2, + ACTIONS(1140), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 3, + ACTIONS(1136), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1260), 4, + ACTIONS(1138), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1252), 5, + ACTIONS(1130), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, @@ -45596,26 +45598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1332), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1335), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1339), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_LT_DASH, STATE(329), 1, sym_block, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1085), 2, + STATE(1037), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45625,47 +45627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44022] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, - anon_sym_LPAREN, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1118), 1, - anon_sym_PIPE, - ACTIONS(1126), 1, - anon_sym_AMP_AMP, - ACTIONS(1230), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1543), 1, - 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(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, - [44076] = 16, + [44022] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -45676,28 +45638,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1332), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1335), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1339), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_LT_DASH, - ACTIONS(1545), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - STATE(588), 1, + STATE(415), 1, sym_block, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1070), 2, + STATE(1108), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45707,40 +45669,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44134] = 17, + [44080] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, + ACTIONS(31), 1, + anon_sym_LBRACE, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1332), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_COMMA, - STATE(774), 1, - aux_sym_parameter_declaration_repeat1, - STATE(789), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + ACTIONS(1545), 1, + sym_identifier, + STATE(329), 1, + sym_block, + STATE(792), 1, sym_qualified_type, - STATE(1015), 1, + STATE(1037), 2, + sym_parameter_list, sym__simple_type, - STATE(1113), 1, - sym_parenthesized_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45750,7 +45711,47 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44194] = 16, + [44138] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1134), 1, + anon_sym_PIPE, + ACTIONS(1142), 1, + anon_sym_AMP_AMP, + ACTIONS(1230), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1547), 1, + anon_sym_DOT, + STATE(458), 1, + sym_argument_list, + STATE(1157), 1, + sym_type_arguments, + ACTIONS(1132), 2, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(1140), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1136), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1138), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1130), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_CARET, + [44192] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -45761,28 +45762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1332), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1335), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1339), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_LT_DASH, ACTIONS(1549), 1, anon_sym_LBRACE, - STATE(496), 1, + STATE(558), 1, sym_block, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1027), 2, + STATE(1079), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45792,39 +45793,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44252] = 16, + [44250] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1551), 1, sym_identifier, ACTIONS(1553), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1181), 1, sym_parameter_declaration, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45834,40 +45835,40 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44310] = 17, + [44308] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1521), 1, anon_sym_LT_DASH, ACTIONS(1555), 1, anon_sym_COMMA, STATE(773), 1, aux_sym_field_declaration_repeat1, - STATE(778), 1, + STATE(783), 1, sym_qualified_type, - STATE(869), 1, + STATE(845), 1, sym_parenthesized_type, - STATE(870), 1, + STATE(846), 1, sym__simple_type, - STATE(812), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45877,39 +45878,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44370] = 16, + [44368] = 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, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1332), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - sym_identifier, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, ACTIONS(1557), 1, - anon_sym_RBRACK, - STATE(789), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym_block, + STATE(792), 1, sym_qualified_type, - STATE(1170), 1, - sym_parameter_declaration, - STATE(1083), 2, - sym_parenthesized_type, + STATE(1089), 2, + sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45919,39 +45920,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44428] = 16, + [44426] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, - ACTIONS(31), 1, - anon_sym_LBRACE, ACTIONS(33), 1, anon_sym_interface, ACTIONS(35), 1, anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(1344), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1332), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1335), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1339), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_LT_DASH, ACTIONS(1559), 1, - sym_identifier, - STATE(329), 1, + anon_sym_LBRACE, + STATE(497), 1, sym_block, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1085), 2, + STATE(1028), 2, sym_parameter_list, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -45961,39 +45962,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44486] = 16, + [44484] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - ACTIONS(1561), 1, - anon_sym_EQ, - ACTIONS(1563), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(736), 1, - sym_type_parameter_list, - STATE(778), 1, + ACTIONS(1551), 1, + sym_identifier, + ACTIONS(1561), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_qualified_type, - STATE(905), 2, + STATE(1181), 1, + sym_parameter_declaration, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46003,39 +46004,39 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44544] = 16, + [44542] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_func, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1344), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1521), 1, anon_sym_LT_DASH, + ACTIONS(1563), 1, + anon_sym_EQ, ACTIONS(1565), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_block, - STATE(789), 1, + anon_sym_LBRACK, + STATE(689), 1, + sym_type_parameter_list, + STATE(783), 1, sym_qualified_type, - STATE(1088), 2, - sym_parameter_list, + STATE(896), 2, + sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46045,39 +46046,40 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [44602] = 16, + [44600] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1344), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, + ACTIONS(1314), 1, + anon_sym_LBRACK, ACTIONS(1567), 1, - anon_sym_LBRACE, - STATE(398), 1, - sym_block, - STATE(789), 1, + anon_sym_COMMA, + STATE(772), 1, + aux_sym_parameter_declaration_repeat1, + STATE(792), 1, sym_qualified_type, - STATE(1104), 2, - sym_parameter_list, + STATE(1022), 1, sym__simple_type, - STATE(816), 9, + STATE(1024), 1, + sym_parenthesized_type, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46094,30 +46096,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1569), 1, - anon_sym_RBRACK, - STATE(789), 1, + anon_sym_type, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1207), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46134,30 +46136,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - sym_identifier, - STATE(789), 1, + ACTIONS(1571), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_qualified_type, - STATE(1020), 1, - sym_parameter_declaration, - STATE(1083), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46174,30 +46176,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1573), 1, anon_sym_type, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1207), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46214,30 +46216,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1551), 1, sym_identifier, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1170), 1, + STATE(1181), 1, sym_parameter_declaration, - STATE(1083), 2, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46254,30 +46256,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1573), 1, + ACTIONS(1575), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46294,30 +46296,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1575), 1, - anon_sym_type, - STATE(789), 1, + ACTIONS(1551), 1, + sym_identifier, + STATE(792), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1034), 1, + sym_parameter_declaration, + STATE(1071), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46334,30 +46336,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1577), 1, - anon_sym_RBRACK, - STATE(789), 1, + anon_sym_type, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1251), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46374,30 +46376,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1579), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46414,30 +46416,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1581), 1, anon_sym_RBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46454,30 +46456,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1583), 1, - anon_sym_type, - STATE(789), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_qualified_type, - STATE(1253), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46494,30 +46496,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1585), 1, - anon_sym_type, - STATE(789), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46534,30 +46536,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, ACTIONS(1587), 1, - anon_sym_RBRACK, - STATE(789), 1, + anon_sym_type, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(1207), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46570,32 +46572,32 @@ static const uint16_t ts_small_parse_table[] = { [45320] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(592), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1339), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1343), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(792), 1, sym_qualified_type, - STATE(886), 2, + STATE(833), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46612,28 +46614,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(844), 2, + STATE(1080), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46666,12 +46668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(242), 1, sym_qualified_type, - STATE(291), 2, + STATE(271), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46688,28 +46690,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1163), 2, + STATE(1187), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46726,28 +46728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(818), 2, + STATE(1078), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46764,28 +46766,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1232), 2, + STATE(1233), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46798,32 +46800,32 @@ static const uint16_t ts_small_parse_table[] = { [45632] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1519), 1, + anon_sym_STAR, + ACTIONS(1521), 1, + anon_sym_LT_DASH, + STATE(783), 1, sym_qualified_type, - STATE(1187), 2, + STATE(892), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46840,28 +46842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(819), 2, + STATE(837), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46878,28 +46880,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(818), 2, + STATE(1107), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46912,32 +46914,32 @@ static const uint16_t ts_small_parse_table[] = { [45788] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(278), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1339), 1, anon_sym_STAR, ACTIONS(1597), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(792), 1, sym_qualified_type, - STATE(284), 2, + STATE(834), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46950,32 +46952,32 @@ static const uint16_t ts_small_parse_table[] = { [45840] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(262), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1593), 1, + anon_sym_STAR, + ACTIONS(1599), 1, + anon_sym_LT_DASH, + STATE(242), 1, sym_qualified_type, - STATE(1063), 2, + STATE(254), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -46996,24 +46998,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, ACTIONS(37), 1, anon_sym_chan, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(1335), 1, anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1339), 1, anon_sym_STAR, - ACTIONS(1599), 1, + ACTIONS(1343), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(838), 2, + STATE(840), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47044,14 +47046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1597), 1, + ACTIONS(1599), 1, anon_sym_LT_DASH, - STATE(241), 1, + STATE(242), 1, sym_qualified_type, - STATE(266), 2, + STATE(257), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47064,32 +47066,32 @@ static const uint16_t ts_small_parse_table[] = { [45996] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(278), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(258), 2, + STATE(1251), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47102,32 +47104,32 @@ static const uint16_t ts_small_parse_table[] = { [46048] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(262), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1593), 1, + anon_sym_STAR, + ACTIONS(1595), 1, + anon_sym_LT_DASH, + STATE(242), 1, sym_qualified_type, - STATE(1235), 2, + STATE(278), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47140,32 +47142,32 @@ static const uint16_t ts_small_parse_table[] = { [46100] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1519), 1, + anon_sym_STAR, + ACTIONS(1521), 1, + anon_sym_LT_DASH, + STATE(783), 1, sym_qualified_type, - STATE(1103), 2, + STATE(940), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47182,28 +47184,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + STATE(792), 1, sym_qualified_type, - STATE(1253), 2, + STATE(822), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47226,6 +47228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(280), 1, anon_sym_map, + ACTIONS(282), 1, + anon_sym_chan, ACTIONS(1589), 1, anon_sym_LPAREN, ACTIONS(1591), 1, @@ -47234,14 +47238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1595), 1, anon_sym_LT_DASH, - ACTIONS(1601), 1, - anon_sym_chan, - STATE(241), 1, + STATE(242), 1, sym_qualified_type, - STATE(282), 2, + STATE(249), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47254,32 +47256,32 @@ static const uint16_t ts_small_parse_table[] = { [46256] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(278), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(274), 2, + STATE(1090), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47292,32 +47294,32 @@ static const uint16_t ts_small_parse_table[] = { [46308] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(278), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(285), 2, + STATE(1087), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47330,32 +47332,32 @@ static const uint16_t ts_small_parse_table[] = { [46360] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, + ACTIONS(262), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(274), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(278), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1593), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1595), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(242), 1, sym_qualified_type, - STATE(799), 2, + STATE(282), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47368,32 +47370,32 @@ static const uint16_t ts_small_parse_table[] = { [46412] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - sym_identifier, - ACTIONS(268), 1, - anon_sym_func, - ACTIONS(274), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(278), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(280), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(282), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1589), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1591), 1, - anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1595), 1, - anon_sym_LT_DASH, - STATE(241), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(281), 2, + STATE(1115), 2, sym_parenthesized_type, sym__simple_type, - STATE(253), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47410,28 +47412,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1089), 2, + STATE(1193), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47448,28 +47450,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1061), 2, + STATE(822), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47482,32 +47484,32 @@ static const uint16_t ts_small_parse_table[] = { [46568] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1519), 1, + anon_sym_STAR, + ACTIONS(1521), 1, + anon_sym_LT_DASH, + STATE(783), 1, sym_qualified_type, - STATE(1224), 2, + STATE(814), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47524,28 +47526,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1032), 2, + STATE(1217), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47558,32 +47560,32 @@ static const uint16_t ts_small_parse_table[] = { [46672] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(1170), 1, - anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1521), 1, anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1601), 1, + anon_sym_chan, + STATE(783), 1, sym_qualified_type, - STATE(801), 2, + STATE(815), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47600,28 +47602,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1270), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1603), 1, - anon_sym_LT_DASH, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(841), 2, + STATE(1209), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47638,28 +47640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(839), 2, + STATE(1033), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47676,28 +47678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1031), 2, + STATE(1032), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47714,28 +47716,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1171), 2, + STATE(1241), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47752,28 +47754,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1220), 2, + STATE(1232), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47790,28 +47792,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1597), 1, + anon_sym_LT_DASH, + STATE(792), 1, sym_qualified_type, - STATE(1206), 2, + STATE(817), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47824,32 +47826,32 @@ static const uint16_t ts_small_parse_table[] = { [47036] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1168), 1, + anon_sym_chan, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1605), 1, - anon_sym_chan, - STATE(789), 1, + ACTIONS(1519), 1, + anon_sym_STAR, + ACTIONS(1603), 1, + anon_sym_LT_DASH, + STATE(783), 1, sym_qualified_type, - STATE(843), 2, + STATE(799), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47866,28 +47868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + STATE(792), 1, sym_qualified_type, - STATE(1071), 2, + STATE(832), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47900,32 +47902,32 @@ static const uint16_t ts_small_parse_table[] = { [47140] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1607), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(807), 2, + STATE(1142), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47942,28 +47944,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1189), 2, + STATE(1073), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -47976,32 +47978,32 @@ static const uint16_t ts_small_parse_table[] = { [47244] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_func, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1521), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(783), 1, sym_qualified_type, - STATE(820), 2, + STATE(808), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48014,32 +48016,32 @@ static const uint16_t ts_small_parse_table[] = { [47296] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1607), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(809), 2, + STATE(1207), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48056,28 +48058,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(839), 2, + STATE(1110), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48094,28 +48096,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1249), 2, + STATE(1105), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48132,28 +48134,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1250), 2, + STATE(1256), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48166,32 +48168,32 @@ static const uint16_t ts_small_parse_table[] = { [47504] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(262), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(881), 1, - anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1593), 1, + anon_sym_STAR, + ACTIONS(1595), 1, + anon_sym_LT_DASH, + ACTIONS(1605), 1, + anon_sym_chan, + STATE(242), 1, sym_qualified_type, - STATE(1079), 2, + STATE(256), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48204,32 +48206,32 @@ static const uint16_t ts_small_parse_table[] = { [47556] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(811), 2, + STATE(1221), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48242,32 +48244,32 @@ static const uint16_t ts_small_parse_table[] = { [47608] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1495), 1, + ACTIONS(888), 1, + anon_sym_chan, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, anon_sym_LT_DASH, - ACTIONS(1609), 1, - anon_sym_chan, - STATE(778), 1, + STATE(792), 1, sym_qualified_type, - STATE(810), 2, + STATE(817), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48284,28 +48286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1081), 2, + STATE(1246), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48322,28 +48324,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1355), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(819), 2, + STATE(840), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48360,28 +48362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(1058), 2, + STATE(829), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48394,32 +48396,32 @@ static const uint16_t ts_small_parse_table[] = { [47816] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(262), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(268), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(274), 1, + anon_sym_struct, + ACTIONS(278), 1, + anon_sym_interface, + ACTIONS(280), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(282), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1589), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1591), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1593), 1, + anon_sym_STAR, + ACTIONS(1595), 1, + anon_sym_LT_DASH, + STATE(242), 1, sym_qualified_type, - STATE(1082), 2, + STATE(255), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(289), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48432,32 +48434,32 @@ static const uint16_t ts_small_parse_table[] = { [47868] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1505), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1607), 1, anon_sym_LT_DASH, - STATE(778), 1, + STATE(792), 1, sym_qualified_type, - STATE(814), 2, + STATE(834), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48470,32 +48472,32 @@ static const uint16_t ts_small_parse_table[] = { [47920] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1519), 1, + anon_sym_STAR, + ACTIONS(1521), 1, + anon_sym_LT_DASH, + STATE(783), 1, sym_qualified_type, - STATE(1234), 2, + STATE(798), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48508,32 +48510,32 @@ static const uint16_t ts_small_parse_table[] = { [47972] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(805), 2, + STATE(1263), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48550,28 +48552,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, - anon_sym_chan, - ACTIONS(883), 1, + ACTIONS(890), 1, anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1609), 1, + anon_sym_chan, + STATE(792), 1, sym_qualified_type, - STATE(1245), 2, + STATE(833), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48584,32 +48586,32 @@ static const uint16_t ts_small_parse_table[] = { [48076] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_func, - ACTIONS(1164), 1, + ACTIONS(29), 1, anon_sym_struct, - ACTIONS(1166), 1, + ACTIONS(33), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(1170), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1495), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_LBRACK, - ACTIONS(1503), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_LT_DASH, - STATE(778), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(893), 2, + STATE(832), 2, sym_parenthesized_type, sym__simple_type, - STATE(812), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48622,32 +48624,32 @@ static const uint16_t ts_small_parse_table[] = { [48128] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_struct, - ACTIONS(33), 1, - anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(1144), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(1156), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1164), 1, + anon_sym_interface, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1519), 1, + anon_sym_STAR, + ACTIONS(1521), 1, + anon_sym_LT_DASH, + STATE(783), 1, sym_qualified_type, - STATE(820), 2, + STATE(795), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48664,28 +48666,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + STATE(792), 1, sym_qualified_type, - STATE(1259), 2, + STATE(829), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48702,28 +48704,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_func, - ACTIONS(879), 1, + ACTIONS(35), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(37), 1, anon_sym_chan, - ACTIONS(883), 1, - anon_sym_LT_DASH, - ACTIONS(1270), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, - anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1335), 1, + anon_sym_func, + ACTIONS(1337), 1, anon_sym_LBRACK, - STATE(789), 1, + ACTIONS(1339), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_LT_DASH, + STATE(792), 1, sym_qualified_type, - STATE(1256), 2, + STATE(837), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48740,28 +48742,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(863), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_func, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1599), 1, - anon_sym_LT_DASH, - STATE(789), 1, + ACTIONS(1314), 1, + anon_sym_LBRACK, + STATE(792), 1, sym_qualified_type, - STATE(841), 2, + STATE(1254), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48778,28 +48780,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(33), 1, anon_sym_interface, - ACTIONS(856), 1, + ACTIONS(863), 1, sym_identifier, - ACTIONS(868), 1, + ACTIONS(875), 1, anon_sym_func, - ACTIONS(879), 1, + ACTIONS(886), 1, anon_sym_map, - ACTIONS(881), 1, + ACTIONS(888), 1, anon_sym_chan, - ACTIONS(1270), 1, + ACTIONS(890), 1, + anon_sym_LT_DASH, + ACTIONS(1298), 1, anon_sym_LPAREN, - ACTIONS(1276), 1, + ACTIONS(1304), 1, anon_sym_STAR, - ACTIONS(1280), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1603), 1, - anon_sym_LT_DASH, - STATE(789), 1, + STATE(792), 1, sym_qualified_type, - STATE(838), 2, + STATE(1138), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(824), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48812,32 +48814,32 @@ static const uint16_t ts_small_parse_table[] = { [48388] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_func, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(37), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1603), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(783), 1, sym_qualified_type, - STATE(844), 2, + STATE(802), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48850,32 +48852,32 @@ static const uint16_t ts_small_parse_table[] = { [48440] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(1144), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_func, + ACTIONS(1162), 1, anon_sym_struct, - ACTIONS(33), 1, + ACTIONS(1164), 1, anon_sym_interface, - ACTIONS(35), 1, + ACTIONS(1166), 1, anon_sym_map, - ACTIONS(616), 1, + ACTIONS(1168), 1, anon_sym_chan, - ACTIONS(856), 1, - sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1511), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, - anon_sym_func, - ACTIONS(1349), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1351), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1355), 1, + ACTIONS(1521), 1, anon_sym_LT_DASH, - STATE(789), 1, + STATE(783), 1, sym_qualified_type, - STATE(843), 2, + STATE(796), 2, sym_parenthesized_type, sym__simple_type, - STATE(816), 9, + STATE(807), 9, sym_generic_type, sym_pointer_type, sym_array_type, @@ -48885,12 +48887,16 @@ static const uint16_t ts_small_parse_table[] = { sym_map_type, sym_channel_type, sym_function_type, - [48492] = 3, + [48492] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(694), 1, + ACTIONS(1613), 1, anon_sym_LF, - ACTIONS(696), 17, + ACTIONS(1615), 1, + anon_sym_COMMA, + STATE(744), 1, + aux_sym_const_spec_repeat1, + ACTIONS(1611), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48906,14 +48912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, - sym_raw_string_literal, - anon_sym_DQUOTE, - [48518] = 3, + [48522] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(673), 1, + ACTIONS(791), 1, anon_sym_LF, - ACTIONS(675), 17, + ACTIONS(793), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48931,12 +48935,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [48544] = 3, + [48548] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(702), 1, + ACTIONS(851), 1, anon_sym_LF, - ACTIONS(704), 17, + ACTIONS(853), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48954,16 +48958,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_raw_string_literal, anon_sym_DQUOTE, - [48570] = 5, + [48574] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1613), 1, + ACTIONS(827), 1, anon_sym_LF, - ACTIONS(1615), 1, - anon_sym_COMMA, - STATE(747), 1, - aux_sym_const_spec_repeat1, - ACTIONS(1611), 15, + ACTIONS(829), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -48979,12 +48979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, sym_identifier, + sym_raw_string_literal, + anon_sym_DQUOTE, [48600] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(843), 1, anon_sym_LF, - ACTIONS(679), 17, + ACTIONS(845), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_EQ, @@ -49027,14 +49029,14 @@ static const uint16_t ts_small_parse_table[] = { [48651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 6, + ACTIONS(845), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(702), 10, + ACTIONS(843), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49048,14 +49050,14 @@ static const uint16_t ts_small_parse_table[] = { [48675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 6, + ACTIONS(793), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(694), 10, + ACTIONS(791), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49069,14 +49071,14 @@ static const uint16_t ts_small_parse_table[] = { [48699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 6, + ACTIONS(853), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(677), 10, + ACTIONS(851), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49090,14 +49092,14 @@ static const uint16_t ts_small_parse_table[] = { [48723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 6, + ACTIONS(829), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - ACTIONS(673), 10, + ACTIONS(827), 10, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -49132,7 +49134,7 @@ static const uint16_t ts_small_parse_table[] = { [48772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(925), 1, anon_sym_COMMA, STATE(754), 1, aux_sym_expression_list_repeat1, @@ -49153,7 +49155,7 @@ static const uint16_t ts_small_parse_table[] = { [48797] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49163,15 +49165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1629), 1, anon_sym_TILDE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(992), 5, + STATE(1019), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49180,7 +49182,7 @@ static const uint16_t ts_small_parse_table[] = { [48835] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49190,15 +49192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1631), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(1077), 5, + STATE(1019), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49207,7 +49209,7 @@ static const uint16_t ts_small_parse_table[] = { [48873] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49217,15 +49219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1633), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(1077), 5, + STATE(964), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49234,7 +49236,7 @@ static const uint16_t ts_small_parse_table[] = { [48911] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49244,15 +49246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1635), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(976), 5, + STATE(1019), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49261,7 +49263,7 @@ static const uint16_t ts_small_parse_table[] = { [48949] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49271,15 +49273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1637), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(1077), 5, + STATE(1002), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49288,7 +49290,7 @@ static const uint16_t ts_small_parse_table[] = { [48987] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49298,15 +49300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1639), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(1077), 5, + STATE(1005), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49315,7 +49317,7 @@ static const uint16_t ts_small_parse_table[] = { [49025] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49325,15 +49327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1641), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(1077), 5, + STATE(1019), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49342,7 +49344,7 @@ static const uint16_t ts_small_parse_table[] = { [49063] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49352,15 +49354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1643), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(964), 5, + STATE(1019), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, @@ -49369,7 +49371,7 @@ static const uint16_t ts_small_parse_table[] = { [49101] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, + ACTIONS(1162), 1, anon_sym_struct, ACTIONS(1623), 1, sym_identifier, @@ -49379,27 +49381,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1645), 1, anon_sym_RBRACE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, + STATE(886), 1, sym_struct_term, - STATE(978), 1, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, sym_struct_type, - STATE(1109), 1, + STATE(1013), 1, sym_qualified_type, - STATE(1077), 5, + STATE(1019), 5, sym__interface_body, sym_interface_type_name, sym_constraint_elem, sym_struct_elem, sym_method_spec, - [49139] = 3, + [49139] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1647), 1, + anon_sym_EQ, ACTIONS(1649), 1, anon_sym_COLON_EQ, - ACTIONS(1647), 12, - anon_sym_EQ, + ACTIONS(1651), 11, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49411,12 +49414,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49160] = 3, + [49162] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(1623), 1, + sym_identifier, + ACTIONS(1625), 1, + anon_sym_STAR, + ACTIONS(1629), 1, + anon_sym_TILDE, + STATE(886), 1, + sym_struct_term, + STATE(887), 1, + sym_constraint_term, + STATE(1004), 1, + sym_struct_type, + STATE(1013), 1, + sym_qualified_type, + STATE(1019), 5, + sym__interface_body, + sym_interface_type_name, + sym_constraint_elem, + sym_struct_elem, + sym_method_spec, + [49197] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1653), 1, + anon_sym_COMMA, + STATE(767), 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, + [49222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1658), 1, anon_sym_COLON_EQ, - ACTIONS(1651), 12, + ACTIONS(1656), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49429,12 +49477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49181] = 3, + [49243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1657), 1, + ACTIONS(1660), 1, anon_sym_COLON_EQ, - ACTIONS(1655), 12, + ACTIONS(1651), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49447,12 +49495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49202] = 3, + [49264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, + ACTIONS(1664), 1, anon_sym_COLON_EQ, - ACTIONS(1647), 12, + ACTIONS(1662), 12, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -49465,59 +49513,13 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 1, - anon_sym_struct, - ACTIONS(1623), 1, - sym_identifier, - ACTIONS(1625), 1, - anon_sym_STAR, - ACTIONS(1629), 1, - anon_sym_TILDE, - STATE(925), 1, - sym_constraint_term, - STATE(927), 1, - sym_struct_term, - STATE(978), 1, - sym_struct_type, - STATE(1109), 1, - sym_qualified_type, - STATE(1077), 5, - sym__interface_body, - sym_interface_type_name, - sym_constraint_elem, - sym_struct_elem, - sym_method_spec, - [49283] = 4, + [49285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1664), 1, - anon_sym_EQ, ACTIONS(1666), 1, anon_sym_COLON_EQ, - ACTIONS(1647), 11, + ACTIONS(1651), 12, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -49529,30 +49531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [49306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1611), 6, - anon_sym_func, - anon_sym_struct, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - sym_identifier, - ACTIONS(1613), 6, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, - [49326] = 5, + [49306] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1672), 1, anon_sym_COMMA, - STATE(773), 1, - aux_sym_field_declaration_repeat1, + STATE(772), 1, + aux_sym_parameter_declaration_repeat1, ACTIONS(1670), 4, anon_sym_LPAREN, anon_sym_LBRACK, @@ -49565,13 +49550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_chan, sym_identifier, - [49350] = 5, + [49330] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1679), 1, anon_sym_COMMA, - STATE(774), 1, - aux_sym_parameter_declaration_repeat1, + STATE(773), 1, + aux_sym_field_declaration_repeat1, ACTIONS(1677), 4, anon_sym_LPAREN, anon_sym_LBRACK, @@ -49584,67 +49569,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_chan, sym_identifier, - [49374] = 6, - ACTIONS(286), 1, + [49354] = 3, + ACTIONS(3), 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, + ACTIONS(1611), 6, + anon_sym_func, + anon_sym_struct, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + sym_identifier, + ACTIONS(1613), 6, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - sym_raw_string_literal, - anon_sym_DQUOTE, - [49399] = 3, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + [49374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 5, + ACTIONS(1684), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1684), 6, + ACTIONS(1682), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49418] = 3, + [49393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 5, + ACTIONS(1688), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1688), 6, + ACTIONS(1686), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49437] = 5, + [49412] = 6, ACTIONS(286), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(618), 1, anon_sym_LF, - ACTIONS(1682), 1, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1690), 1, anon_sym_LBRACK, - STATE(800), 1, + STATE(810), 1, sym_type_arguments, - ACTIONS(656), 7, + ACTIONS(620), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49652,7 +49637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49459] = 11, + [49437] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -49669,73 +49654,80 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_literal, STATE(784), 1, aux_sym_import_spec_list_repeat1, - STATE(1094), 1, + STATE(1062), 1, sym_dot, - STATE(1142), 1, - sym_interpreted_string_literal, - STATE(1178), 1, + STATE(1149), 1, sym_import_spec, - [49493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_LT_DASH, - ACTIONS(1702), 6, - anon_sym_func, - anon_sym_struct, - anon_sym_interface, - anon_sym_map, - anon_sym_chan, - sym_identifier, - [49511] = 11, + STATE(1177), 1, + sym_interpreted_string_literal, + [49471] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(1692), 1, + ACTIONS(1702), 1, sym_identifier, - ACTIONS(1694), 1, + ACTIONS(1705), 1, anon_sym_DOT, - ACTIONS(1696), 1, + ACTIONS(1708), 1, sym_blank_identifier, - ACTIONS(1700), 1, - sym_raw_string_literal, - ACTIONS(1706), 1, + ACTIONS(1711), 1, anon_sym_RPAREN, + ACTIONS(1713), 1, + sym_raw_string_literal, + ACTIONS(1716), 1, + anon_sym_DQUOTE, STATE(779), 1, aux_sym_import_spec_list_repeat1, - STATE(1094), 1, + STATE(1062), 1, sym_dot, - STATE(1142), 1, + STATE(1149), 1, + sym_import_spec, + STATE(1177), 1, sym_interpreted_string_literal, - STATE(1178), 1, + [49505] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1694), 1, + anon_sym_DOT, + ACTIONS(1719), 1, + sym_identifier, + ACTIONS(1721), 1, + sym_blank_identifier, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1725), 1, + sym_raw_string_literal, + ACTIONS(1727), 1, + anon_sym_DQUOTE, + STATE(277), 1, + sym_interpreted_string_literal, + STATE(1010), 1, + sym_dot, + STATE(276), 2, sym_import_spec, - [49545] = 3, + sym_import_spec_list, + [49537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 4, + ACTIONS(1731), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_LT_DASH, - ACTIONS(1708), 6, + ACTIONS(1729), 6, anon_sym_func, anon_sym_struct, anon_sym_interface, anon_sym_map, anon_sym_chan, sym_identifier, - [49563] = 5, + [49555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, + ACTIONS(1345), 1, anon_sym_DOT, - ACTIONS(1712), 1, + ACTIONS(1733), 1, anon_sym_LBRACK, - STATE(817), 1, + STATE(842), 1, sym_type_arguments, ACTIONS(618), 7, anon_sym_LPAREN, @@ -49745,51 +49737,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [49585] = 11, + [49577] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_LF, + ACTIONS(1690), 1, + anon_sym_LBRACK, + STATE(805), 1, + sym_type_arguments, + ACTIONS(660), 7, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + sym_raw_string_literal, + anon_sym_DQUOTE, + [49599] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(1692), 1, sym_identifier, - ACTIONS(1717), 1, + ACTIONS(1694), 1, anon_sym_DOT, - ACTIONS(1720), 1, + ACTIONS(1696), 1, sym_blank_identifier, - ACTIONS(1723), 1, - anon_sym_RPAREN, - ACTIONS(1725), 1, + ACTIONS(1700), 1, sym_raw_string_literal, - ACTIONS(1728), 1, - anon_sym_DQUOTE, - STATE(784), 1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(779), 1, aux_sym_import_spec_list_repeat1, - STATE(1094), 1, + STATE(1062), 1, sym_dot, - STATE(1142), 1, - sym_interpreted_string_literal, - STATE(1178), 1, + STATE(1149), 1, sym_import_spec, - [49619] = 10, + STATE(1177), 1, + sym_interpreted_string_literal, + [49633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 1, - anon_sym_DOT, - ACTIONS(1731), 1, - sym_identifier, - ACTIONS(1733), 1, - sym_blank_identifier, - ACTIONS(1735), 1, + ACTIONS(1739), 4, 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, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_LT_DASH, + ACTIONS(1737), 6, + anon_sym_func, + anon_sym_struct, + anon_sym_interface, + anon_sym_map, + anon_sym_chan, + sym_identifier, [49651] = 3, ACTIONS(3), 1, sym_comment, @@ -49808,9 +49810,9 @@ static const uint16_t ts_small_parse_table[] = { [49669] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(693), 1, anon_sym_LF, - ACTIONS(772), 8, + ACTIONS(695), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49822,9 +49824,9 @@ static const uint16_t ts_small_parse_table[] = { [49686] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(794), 1, + ACTIONS(855), 1, anon_sym_LF, - ACTIONS(796), 8, + ACTIONS(857), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49833,27 +49835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49703] = 4, - ACTIONS(3), 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, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - [49722] = 3, + [49703] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(710), 1, + ACTIONS(725), 1, anon_sym_LF, - ACTIONS(712), 8, + ACTIONS(727), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49862,12 +49849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49739] = 3, + [49720] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(901), 1, + ACTIONS(823), 1, anon_sym_LF, - ACTIONS(903), 8, + ACTIONS(825), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49876,12 +49863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49756] = 3, + [49737] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(889), 1, + ACTIONS(733), 1, anon_sym_LF, - ACTIONS(891), 8, + ACTIONS(735), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_LBRACK, @@ -49890,12 +49877,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, + [49754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_LBRACK, + STATE(844), 1, + sym_type_arguments, + ACTIONS(658), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COLON, [49773] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(665), 1, anon_sym_LF, - ACTIONS(700), 8, + ACTIONS(667), 8, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49904,28 +49906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49790] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - ACTIONS(1712), 1, - anon_sym_LBRACK, - STATE(438), 1, - sym_literal_value, - STATE(828), 1, - sym_type_arguments, - ACTIONS(654), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [49812] = 3, + [49790] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(893), 1, + ACTIONS(737), 1, anon_sym_LF, - ACTIONS(895), 7, + ACTIONS(739), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49933,12 +49919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49828] = 3, + [49806] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(762), 1, + ACTIONS(689), 1, anon_sym_LF, - ACTIONS(764), 7, + ACTIONS(691), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49946,12 +49932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49844] = 3, + [49822] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(717), 1, anon_sym_LF, - ACTIONS(667), 7, + ACTIONS(719), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49959,12 +49945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49860] = 3, + [49838] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(790), 1, + ACTIONS(831), 1, anon_sym_LF, - ACTIONS(792), 7, + ACTIONS(833), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49972,12 +49958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49876] = 3, + [49854] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(835), 1, anon_sym_LF, - ACTIONS(850), 7, + ACTIONS(837), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49985,12 +49971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49892] = 3, + [49870] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(766), 1, + ACTIONS(709), 1, anon_sym_LF, - ACTIONS(768), 7, + ACTIONS(711), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -49998,12 +49984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49908] = 3, + [49886] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(839), 1, anon_sym_LF, - ACTIONS(728), 7, + ACTIONS(841), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50011,12 +49997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49924] = 3, + [49902] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(738), 1, + ACTIONS(811), 1, anon_sym_LF, - ACTIONS(740), 7, + ACTIONS(813), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50024,12 +50010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49940] = 3, + [49918] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(742), 1, + ACTIONS(717), 1, anon_sym_LF, - ACTIONS(744), 7, + ACTIONS(719), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50037,12 +50023,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49956] = 3, + [49934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(733), 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, + [49948] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(905), 1, + ACTIONS(685), 1, anon_sym_LF, - ACTIONS(907), 7, + ACTIONS(687), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50050,12 +50048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49972] = 3, + [49964] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(897), 1, + ACTIONS(677), 1, anon_sym_LF, - ACTIONS(899), 7, + ACTIONS(679), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50063,24 +50061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [49988] = 2, - 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, + [49980] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(754), 1, + ACTIONS(729), 1, anon_sym_LF, - ACTIONS(756), 7, + ACTIONS(731), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50088,12 +50074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50018] = 3, + [49996] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(658), 1, anon_sym_LF, - ACTIONS(760), 7, + ACTIONS(660), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50101,12 +50087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50034] = 3, + [50012] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(795), 1, anon_sym_LF, - ACTIONS(728), 7, + ACTIONS(797), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50114,12 +50100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50050] = 3, + [50028] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(701), 1, anon_sym_LF, - ACTIONS(728), 7, + ACTIONS(703), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50127,12 +50113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50066] = 3, + [50044] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(814), 1, + ACTIONS(721), 1, anon_sym_LF, - ACTIONS(816), 7, + ACTIONS(723), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50140,12 +50126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50082] = 3, + [50060] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(771), 1, anon_sym_LF, - ACTIONS(656), 7, + ACTIONS(773), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50153,12 +50139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, - [50098] = 3, + [50076] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(810), 1, + ACTIONS(775), 1, anon_sym_LF, - ACTIONS(812), 7, + ACTIONS(777), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50166,12 +50152,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_raw_string_literal, anon_sym_DQUOTE, + [50092] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, + anon_sym_LBRACE, + ACTIONS(1733), 1, + anon_sym_LBRACK, + STATE(459), 1, + sym_literal_value, + STATE(844), 1, + sym_type_arguments, + ACTIONS(658), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, [50114] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(786), 1, + ACTIONS(713), 1, anon_sym_LF, - ACTIONS(788), 7, + ACTIONS(715), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50182,9 +50184,9 @@ static const uint16_t ts_small_parse_table[] = { [50130] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(774), 1, + ACTIONS(717), 1, anon_sym_LF, - ACTIONS(776), 7, + ACTIONS(719), 7, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACE, @@ -50195,7 +50197,7 @@ static const uint16_t ts_small_parse_table[] = { [50146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 7, + ACTIONS(693), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50206,7 +50208,7 @@ static const uint16_t ts_small_parse_table[] = { [50159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 7, + ACTIONS(717), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50217,7 +50219,7 @@ static const uint16_t ts_small_parse_table[] = { [50172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(897), 7, + ACTIONS(811), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50228,7 +50230,7 @@ static const uint16_t ts_small_parse_table[] = { [50185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(726), 7, + ACTIONS(775), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50239,7 +50241,7 @@ static const uint16_t ts_small_parse_table[] = { [50198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(786), 7, + ACTIONS(701), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50247,10 +50249,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50211] = 2, + [50211] = 7, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1202), 1, + anon_sym_LPAREN, + ACTIONS(1745), 1, + anon_sym_LF, + ACTIONS(1749), 1, + anon_sym_PIPE, + STATE(655), 1, + sym_parameter_list, + ACTIONS(1747), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [50234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 7, + ACTIONS(795), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50258,24 +50276,10 @@ 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, + [50247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 7, + ACTIONS(737), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50283,10 +50287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50256] = 2, + [50260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(893), 7, + ACTIONS(658), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50294,10 +50298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50269] = 2, + [50273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(774), 7, + ACTIONS(839), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50305,10 +50309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50282] = 2, + [50286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 7, + ACTIONS(725), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50316,24 +50320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50295] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1132), 1, - anon_sym_COMMA, - ACTIONS(1621), 1, - anon_sym_LF, - STATE(822), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1748), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [50314] = 2, + [50299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(766), 7, + ACTIONS(729), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50341,10 +50331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50327] = 2, + [50312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 7, + ACTIONS(855), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50352,10 +50342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50340] = 2, + [50325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(794), 7, + ACTIONS(689), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50363,10 +50353,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50353] = 2, + [50338] = 7, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1150), 1, + anon_sym_DOT, + ACTIONS(1174), 1, + anon_sym_DQUOTE, + ACTIONS(1751), 1, + anon_sym_LF, + ACTIONS(1755), 1, + sym_raw_string_literal, + STATE(1015), 1, + sym_interpreted_string_literal, + ACTIONS(1753), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [50361] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_COMMA, + ACTIONS(1621), 1, + anon_sym_LF, + STATE(835), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1757), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [50380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(790), 7, + ACTIONS(713), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50374,10 +50394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50366] = 2, + [50393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 7, + ACTIONS(717), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50385,26 +50405,10 @@ 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, - anon_sym_DOT, - ACTIONS(1206), 1, - anon_sym_LPAREN, - ACTIONS(1750), 1, - anon_sym_LF, - ACTIONS(1754), 1, - anon_sym_PIPE, - STATE(628), 1, - sym_parameter_list, - ACTIONS(1752), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [50402] = 2, + [50406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(738), 7, + ACTIONS(709), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50412,26 +50416,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50415] = 7, + [50419] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1152), 1, - anon_sym_DOT, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1756), 1, + ACTIONS(1094), 1, anon_sym_LF, - ACTIONS(1760), 1, - sym_raw_string_literal, - STATE(1111), 1, - sym_interpreted_string_literal, - ACTIONS(1758), 2, + ACTIONS(1759), 1, + anon_sym_COMMA, + STATE(835), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1096), 4, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, [50438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(710), 7, + ACTIONS(665), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50442,7 +50444,7 @@ static const uint16_t ts_small_parse_table[] = { [50451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(762), 7, + ACTIONS(835), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50453,7 +50455,7 @@ static const uint16_t ts_small_parse_table[] = { [50464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(754), 7, + ACTIONS(771), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50464,7 +50466,7 @@ static const uint16_t ts_small_parse_table[] = { [50477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 7, + ACTIONS(685), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50475,7 +50477,7 @@ static const uint16_t ts_small_parse_table[] = { [50490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 7, + ACTIONS(717), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50486,7 +50488,7 @@ static const uint16_t ts_small_parse_table[] = { [50503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(726), 7, + ACTIONS(831), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50497,7 +50499,7 @@ static const uint16_t ts_small_parse_table[] = { [50516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(770), 7, + ACTIONS(721), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50508,7 +50510,7 @@ static const uint16_t ts_small_parse_table[] = { [50529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(726), 7, + ACTIONS(823), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50519,7 +50521,7 @@ static const uint16_t ts_small_parse_table[] = { [50542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(814), 7, + ACTIONS(677), 7, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -50527,927 +50529,919 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_COLON, - [50555] = 5, - ACTIONS(3), 1, + [50555] = 6, + ACTIONS(286), 1, sym_comment, + ACTIONS(1174), 1, + anon_sym_DQUOTE, ACTIONS(1762), 1, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1768), 1, - anon_sym_RBRACE, - ACTIONS(1770), 1, - anon_sym_case, - STATE(860), 3, - sym_default_case, - sym_type_case, - aux_sym_type_switch_statement_repeat1, - [50591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_case, + anon_sym_LF, ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1772), 1, + sym_raw_string_literal, + STATE(1054), 1, + sym_interpreted_string_literal, + ACTIONS(1764), 2, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(864), 3, - sym_expression_case, - sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50609] = 4, + [50575] = 6, ACTIONS(286), 1, sym_comment, - ACTIONS(1774), 1, + ACTIONS(1174), 1, + anon_sym_DQUOTE, + ACTIONS(1762), 1, anon_sym_LF, - ACTIONS(1778), 1, - anon_sym_else, - ACTIONS(1776), 4, + ACTIONS(1768), 1, + sym_raw_string_literal, + STATE(1025), 1, + sym_interpreted_string_literal, + ACTIONS(1764), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [50625] = 5, - ACTIONS(286), 1, + [50595] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1780), 1, - anon_sym_LF, - ACTIONS(1782), 1, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1757), 1, + anon_sym_COLON, + STATE(854), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1621), 3, 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, + anon_sym_EQ, + anon_sym_COLON_EQ, + [50613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1770), 1, anon_sym_RBRACE, - ACTIONS(1788), 1, + ACTIONS(1772), 1, anon_sym_case, - ACTIONS(1791), 1, + ACTIONS(1774), 1, anon_sym_default, - STATE(850), 3, + STATE(853), 3, sym_default_case, sym_communication_case, aux_sym_select_statement_repeat1, - [50661] = 5, + [50631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1776), 2, + sym_blank_identifier, + sym_identifier, + ACTIONS(1711), 4, + anon_sym_DOT, + anon_sym_RPAREN, + sym_raw_string_literal, + anon_sym_DQUOTE, + [50645] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1774), 1, anon_sym_default, - ACTIONS(1794), 1, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(1780), 1, + anon_sym_case, + STATE(858), 3, + sym_expression_case, + sym_default_case, + aux_sym_expression_switch_statement_repeat1, + [50663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1782), 1, anon_sym_RBRACE, - ACTIONS(1796), 1, + ACTIONS(1784), 1, anon_sym_case, - STATE(850), 3, + ACTIONS(1787), 1, + anon_sym_default, + STATE(851), 3, sym_default_case, sym_communication_case, aux_sym_select_statement_repeat1, - [50679] = 5, + [50681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1774), 1, anon_sym_default, - ACTIONS(1798), 1, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1790), 1, anon_sym_RBRACE, - STATE(864), 3, + STATE(868), 3, sym_expression_case, sym_default_case, aux_sym_expression_switch_statement_repeat1, - [50697] = 5, + [50699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1772), 1, anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1774), 1, anon_sym_default, - ACTIONS(1800), 1, + ACTIONS(1792), 1, anon_sym_RBRACE, - STATE(845), 3, - sym_expression_case, + STATE(851), 3, 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, + sym_communication_case, + aux_sym_select_statement_repeat1, + [50717] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1096), 1, anon_sym_COLON, - ACTIONS(1802), 1, + ACTIONS(1794), 1, anon_sym_COMMA, - STATE(855), 1, + STATE(854), 1, aux_sym_expression_list_repeat1, ACTIONS(1094), 3, anon_sym_SEMI, anon_sym_EQ, anon_sym_COLON_EQ, - [50749] = 5, + [50735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1774), 1, + anon_sym_default, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1797), 1, + anon_sym_RBRACE, + STATE(852), 3, + sym_expression_case, + sym_default_case, + aux_sym_expression_switch_statement_repeat1, + [50753] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1799), 1, + anon_sym_LF, + ACTIONS(1803), 1, + anon_sym_EQ, + ACTIONS(1801), 4, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_case, - ACTIONS(1766), 1, + anon_sym_default, + [50769] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1774), 1, anon_sym_default, ACTIONS(1805), 1, anon_sym_RBRACE, - STATE(847), 3, + ACTIONS(1807), 1, + anon_sym_case, + STATE(859), 3, + sym_default_case, + sym_type_case, + aux_sym_type_switch_statement_repeat1, + [50787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1774), 1, + anon_sym_default, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1809), 1, + anon_sym_RBRACE, + STATE(868), 3, sym_expression_case, sym_default_case, aux_sym_expression_switch_statement_repeat1, - [50767] = 5, + [50805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1766), 1, + ACTIONS(1774), 1, anon_sym_default, - ACTIONS(1796), 1, - anon_sym_case, ACTIONS(1807), 1, + anon_sym_case, + ACTIONS(1811), 1, anon_sym_RBRACE, - STATE(851), 3, + STATE(866), 3, sym_default_case, - sym_communication_case, - aux_sym_select_statement_repeat1, - [50785] = 7, + sym_type_case, + aux_sym_type_switch_statement_repeat1, + [50823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(1341), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, - anon_sym_DOT, - ACTIONS(1712), 1, - anon_sym_LBRACK, - ACTIONS(1809), 1, + STATE(436), 1, + sym_block, + ACTIONS(775), 4, anon_sym_LPAREN, - STATE(28), 1, - sym_parameter_list, - STATE(817), 1, - sym_type_arguments, - [50807] = 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [50839] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_LF, ACTIONS(1813), 1, + anon_sym_LF, + ACTIONS(1817), 1, + anon_sym_else, + ACTIONS(1815), 4, anon_sym_SEMI, - STATE(866), 1, - aux_sym__statement_list_repeat1, - ACTIONS(206), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [50825] = 5, - ACTIONS(3), 1, + [50855] = 4, + ACTIONS(286), 1, sym_comment, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1770), 1, - anon_sym_case, - ACTIONS(1815), 1, + ACTIONS(1819), 1, + anon_sym_LF, + ACTIONS(1823), 1, + anon_sym_else, + ACTIONS(1821), 4, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(871), 3, - sym_default_case, - sym_type_case, - aux_sym_type_switch_statement_repeat1, - [50843] = 6, + anon_sym_case, + anon_sym_default, + [50871] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1817), 1, + ACTIONS(1825), 1, anon_sym_LF, - ACTIONS(1821), 1, - sym_raw_string_literal, - STATE(1034), 1, - sym_interpreted_string_literal, - ACTIONS(1819), 2, + ACTIONS(1828), 1, anon_sym_SEMI, + STATE(863), 1, + aux_sym_statement_list_repeat1, + ACTIONS(1831), 3, anon_sym_RBRACE, - [50863] = 5, + anon_sym_case, + anon_sym_default, + [50889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_case, - ACTIONS(1766), 1, + ACTIONS(1774), 1, anon_sym_default, - ACTIONS(1823), 1, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1833), 1, anon_sym_RBRACE, - STATE(876), 3, + STATE(868), 3, sym_expression_case, sym_default_case, aux_sym_expression_switch_statement_repeat1, - [50881] = 5, + [50907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 1, - anon_sym_COMMA, - ACTIONS(1748), 1, - anon_sym_COLON, - STATE(855), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1621), 3, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - [50899] = 5, + ACTIONS(1774), 1, + anon_sym_default, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1835), 1, + anon_sym_RBRACE, + STATE(875), 3, + sym_expression_case, + sym_default_case, + aux_sym_expression_switch_statement_repeat1, + [50925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1825), 1, + ACTIONS(1837), 1, anon_sym_RBRACE, - ACTIONS(1827), 1, + ACTIONS(1839), 1, anon_sym_case, - ACTIONS(1830), 1, + ACTIONS(1842), 1, anon_sym_default, - STATE(864), 3, - sym_expression_case, + STATE(866), 3, sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [50917] = 4, + sym_type_case, + aux_sym_type_switch_statement_repeat1, + [50943] = 6, ACTIONS(286), 1, sym_comment, - ACTIONS(1833), 1, + ACTIONS(1174), 1, + anon_sym_DQUOTE, + ACTIONS(1845), 1, anon_sym_LF, - ACTIONS(1837), 1, - anon_sym_EQ, - ACTIONS(1835), 4, + ACTIONS(1849), 1, + sym_raw_string_literal, + STATE(1016), 1, + sym_interpreted_string_literal, + ACTIONS(1847), 2, anon_sym_SEMI, anon_sym_RBRACE, + [50963] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + anon_sym_RBRACE, + ACTIONS(1853), 1, anon_sym_case, + ACTIONS(1856), 1, anon_sym_default, - [50933] = 5, + STATE(868), 3, + sym_expression_case, + sym_default_case, + aux_sym_expression_switch_statement_repeat1, + [50981] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(1859), 1, anon_sym_LF, - ACTIONS(1842), 1, + ACTIONS(1863), 1, + anon_sym_EQ, + ACTIONS(1861), 4, 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, + [50997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(1774), 1, + anon_sym_default, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1865), 1, + anon_sym_RBRACE, + STATE(864), 3, + sym_expression_case, + sym_default_case, + aux_sym_expression_switch_statement_repeat1, + [51015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, anon_sym_LBRACE, - STATE(438), 1, + STATE(459), 1, sym_literal_value, - ACTIONS(654), 4, + ACTIONS(658), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - [50967] = 6, + [51031] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1847), 1, + ACTIONS(1867), 1, anon_sym_LF, - ACTIONS(1851), 1, - sym_raw_string_literal, - STATE(1097), 1, - sym_interpreted_string_literal, - ACTIONS(1849), 2, + ACTIONS(1869), 1, anon_sym_SEMI, + STATE(877), 1, + aux_sym_statement_list_repeat1, + ACTIONS(1871), 3, anon_sym_RBRACE, - [50987] = 6, + anon_sym_case, + anon_sym_default, + [51049] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1853), 1, + ACTIONS(1873), 1, + sym_identifier, + ACTIONS(1875), 1, anon_sym_LF, - ACTIONS(1857), 1, - sym_raw_string_literal, - STATE(1037), 1, - sym_interpreted_string_literal, - ACTIONS(1855), 2, + ACTIONS(1877), 4, anon_sym_SEMI, anon_sym_RBRACE, - [51007] = 6, + anon_sym_case, + anon_sym_default, + [51065] = 6, ACTIONS(286), 1, sym_comment, - ACTIONS(1176), 1, + ACTIONS(1174), 1, anon_sym_DQUOTE, - ACTIONS(1853), 1, + ACTIONS(1879), 1, anon_sym_LF, - ACTIONS(1859), 1, + ACTIONS(1883), 1, sym_raw_string_literal, - STATE(1033), 1, + STATE(1021), 1, sym_interpreted_string_literal, - ACTIONS(1855), 2, + ACTIONS(1881), 2, anon_sym_SEMI, anon_sym_RBRACE, - [51027] = 5, + [51085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_RBRACE, - ACTIONS(1863), 1, - anon_sym_case, - ACTIONS(1866), 1, + ACTIONS(1774), 1, anon_sym_default, - STATE(871), 3, + ACTIONS(1780), 1, + anon_sym_case, + ACTIONS(1885), 1, + anon_sym_RBRACE, + STATE(868), 3, + sym_expression_case, sym_default_case, - sym_type_case, - aux_sym_type_switch_statement_repeat1, - [51045] = 4, + aux_sym_expression_switch_statement_repeat1, + [51103] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(618), 1, + anon_sym_LBRACE, + ACTIONS(1345), 1, + anon_sym_DOT, + ACTIONS(1733), 1, + anon_sym_LBRACK, + ACTIONS(1887), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym_parameter_list, + STATE(842), 1, + sym_type_arguments, + [51125] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1889), 1, anon_sym_LF, - ACTIONS(1873), 4, + ACTIONS(1891), 1, anon_sym_SEMI, + STATE(863), 1, + aux_sym_statement_list_repeat1, + ACTIONS(206), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51061] = 4, + [51143] = 6, ACTIONS(286), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(1174), 1, + anon_sym_DQUOTE, + ACTIONS(1893), 1, + anon_sym_LF, + ACTIONS(1897), 1, + sym_raw_string_literal, + STATE(1030), 1, + sym_interpreted_string_literal, + ACTIONS(1895), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51163] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1899), 1, sym_identifier, - ACTIONS(1877), 1, + ACTIONS(1901), 1, anon_sym_LF, - ACTIONS(1879), 4, + ACTIONS(1903), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51077] = 5, + [51179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_case, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1881), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, + ACTIONS(1909), 1, anon_sym_RBRACE, - STATE(852), 3, - sym_expression_case, - sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [51095] = 4, + STATE(878), 1, + sym_qualified_type, + STATE(1041), 1, + sym_field_declaration, + [51198] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(1911), 1, anon_sym_LF, - ACTIONS(1887), 1, - anon_sym_EQ, - ACTIONS(1885), 4, + ACTIONS(1915), 1, + anon_sym_PIPE, + STATE(881), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(1913), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51215] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1918), 1, + anon_sym_LF, + ACTIONS(1920), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_case, - ACTIONS(1766), 1, - anon_sym_default, - ACTIONS(1889), 1, - anon_sym_RBRACE, - STATE(864), 3, - sym_expression_case, - sym_default_case, - aux_sym_expression_switch_statement_repeat1, - [51129] = 4, + [51228] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1922), 1, anon_sym_LF, - ACTIONS(1895), 1, - anon_sym_else, - ACTIONS(1893), 4, + ACTIONS(1924), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, 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, - anon_sym_RBRACE, - [51165] = 3, + [51241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 2, - sym_blank_identifier, + ACTIONS(1926), 1, sym_identifier, - ACTIONS(1723), 4, - anon_sym_DOT, + ACTIONS(1929), 1, anon_sym_RPAREN, - sym_raw_string_literal, - anon_sym_DQUOTE, - [51179] = 3, + STATE(884), 1, + aux_sym_type_declaration_repeat1, + STATE(1143), 2, + sym_type_alias, + sym_type_spec, + [51258] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1905), 1, + ACTIONS(1931), 1, anon_sym_LF, - ACTIONS(1907), 4, + ACTIONS(1933), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51192] = 3, + [51271] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(1935), 1, anon_sym_LF, - ACTIONS(1911), 4, + ACTIONS(1939), 1, + anon_sym_PIPE, + STATE(923), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(1937), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51205] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 1, - sym_identifier, - ACTIONS(1916), 1, - anon_sym_RPAREN, - STATE(882), 1, - aux_sym_type_declaration_repeat1, - STATE(1139), 2, - sym_type_alias, - sym_type_spec, - [51222] = 3, + [51288] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(1941), 1, anon_sym_LF, - ACTIONS(1920), 4, + ACTIONS(1945), 1, + anon_sym_PIPE, + STATE(920), 1, + aux_sym_constraint_elem_repeat1, + ACTIONS(1943), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51235] = 6, + [51305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(1178), 1, - anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1733), 1, anon_sym_LBRACK, - STATE(577), 1, + ACTIONS(1947), 1, + anon_sym_LBRACE, + STATE(500), 1, sym_literal_value, - STATE(828), 1, + STATE(844), 1, sym_type_arguments, - [51254] = 3, + [51324] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1922), 1, + ACTIONS(1949), 1, anon_sym_LF, - ACTIONS(1924), 4, + ACTIONS(1951), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51267] = 3, + [51337] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(1953), 1, anon_sym_LF, - ACTIONS(1928), 4, + ACTIONS(1955), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51280] = 3, + [51350] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1930), 1, + ACTIONS(1957), 1, anon_sym_LF, - ACTIONS(1932), 4, + ACTIONS(1959), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51293] = 3, + [51363] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1934), 1, + ACTIONS(1961), 1, anon_sym_LF, - ACTIONS(1936), 4, + ACTIONS(1963), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51306] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_LF, - ACTIONS(1942), 1, - anon_sym_PIPE, - STATE(889), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(1940), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [51323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(1949), 1, - anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(996), 1, - sym_field_declaration, - [51342] = 5, + [51376] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1951), 1, + ACTIONS(1965), 1, anon_sym_LF, - ACTIONS(1955), 1, - anon_sym_PIPE, - STATE(891), 1, - aux_sym_constraint_elem_repeat1, - ACTIONS(1953), 2, + ACTIONS(1967), 4, anon_sym_SEMI, anon_sym_RBRACE, - [51359] = 3, + anon_sym_case, + anon_sym_default, + [51389] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(1969), 1, anon_sym_LF, - ACTIONS(1960), 4, + ACTIONS(1971), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51372] = 3, + [51402] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1962), 1, + ACTIONS(1973), 1, anon_sym_LF, - ACTIONS(1964), 4, + ACTIONS(1975), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51385] = 3, + [51415] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(1977), 1, anon_sym_LF, - ACTIONS(1968), 4, + ACTIONS(1979), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51398] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, - anon_sym_LBRACK, - ACTIONS(1970), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_literal_value, - STATE(828), 1, - sym_type_arguments, - [51417] = 3, + [51428] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1972), 1, + ACTIONS(1981), 1, anon_sym_LF, - ACTIONS(1974), 4, + ACTIONS(1983), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51430] = 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, + [51441] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1978), 1, + ACTIONS(1985), 1, anon_sym_LF, - ACTIONS(1980), 4, + ACTIONS(1987), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51462] = 5, + [51454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(1989), 1, sym_identifier, - ACTIONS(1984), 1, + ACTIONS(1991), 1, anon_sym_RPAREN, - STATE(882), 1, + STATE(884), 1, aux_sym_type_declaration_repeat1, - STATE(1139), 2, + STATE(1143), 2, sym_type_alias, sym_type_spec, - [51479] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(818), 1, - anon_sym_LF, - ACTIONS(820), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51492] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(1986), 1, - anon_sym_LF, - ACTIONS(1988), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51505] = 6, + [51471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1907), 1, anon_sym_STAR, - ACTIONS(1990), 1, + ACTIONS(1993), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(878), 1, sym_qualified_type, - STATE(1090), 1, + STATE(1041), 1, sym_field_declaration, - [51524] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, - anon_sym_LBRACK, - ACTIONS(1992), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_literal_value, - STATE(828), 1, - sym_type_arguments, - [51543] = 3, + [51490] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1994), 1, + ACTIONS(1995), 1, anon_sym_LF, - ACTIONS(1996), 4, + ACTIONS(1997), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51556] = 3, + [51503] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1998), 1, + ACTIONS(1999), 1, anon_sym_LF, - ACTIONS(2000), 4, + ACTIONS(2001), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51569] = 3, + [51516] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2003), 1, anon_sym_LF, - ACTIONS(2004), 4, + ACTIONS(2005), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51582] = 3, + [51529] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2006), 1, + ACTIONS(2007), 1, anon_sym_LF, - ACTIONS(2008), 4, + ACTIONS(2009), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51595] = 3, + [51542] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2010), 1, + ACTIONS(741), 1, anon_sym_LF, - ACTIONS(1845), 4, + ACTIONS(743), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51608] = 3, + [51555] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2012), 1, + ACTIONS(2011), 1, anon_sym_LF, - ACTIONS(2014), 4, + ACTIONS(2013), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51621] = 3, + [51568] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2016), 1, + ACTIONS(2015), 1, anon_sym_LF, - ACTIONS(2018), 4, + ACTIONS(1831), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51634] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2020), 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, + [51581] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2026), 1, + ACTIONS(2017), 1, anon_sym_LF, - ACTIONS(2028), 4, + ACTIONS(2019), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51664] = 6, + [51594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1907), 1, anon_sym_STAR, - ACTIONS(2030), 1, + ACTIONS(2021), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(878), 1, sym_qualified_type, - STATE(966), 1, + STATE(1041), 1, sym_field_declaration, - [51683] = 5, + [51613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2032), 1, - anon_sym_struct, - STATE(978), 1, - sym_struct_type, - STATE(982), 1, - sym_struct_term, - ACTIONS(1625), 2, - anon_sym_STAR, - anon_sym_TILDE, - [51700] = 5, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(1733), 1, + anon_sym_LBRACK, + ACTIONS(2023), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_literal_value, + STATE(844), 1, + sym_type_arguments, + [51632] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2034), 1, + ACTIONS(2025), 1, anon_sym_LF, - ACTIONS(2038), 1, - anon_sym_PIPE, - STATE(889), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(2036), 2, + ACTIONS(2027), 4, anon_sym_SEMI, anon_sym_RBRACE, - [51717] = 6, + anon_sym_case, + anon_sym_default, + [51645] = 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(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, + ACTIONS(2029), 1, + anon_sym_RBRACE, + STATE(878), 1, + sym_qualified_type, + STATE(1003), 1, + sym_field_declaration, + [51664] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2040), 1, + ACTIONS(2031), 1, anon_sym_LF, - ACTIONS(2042), 4, + ACTIONS(2033), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51749] = 3, + [51677] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(2035), 1, anon_sym_LF, - ACTIONS(2046), 4, + ACTIONS(2037), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51762] = 3, + [51690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, + ACTIONS(2039), 1, + anon_sym_RBRACE, + STATE(878), 1, + sym_qualified_type, + STATE(1041), 1, + sym_field_declaration, + [51709] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2048), 1, + ACTIONS(2041), 1, anon_sym_LF, - ACTIONS(2050), 4, + ACTIONS(2045), 1, + anon_sym_PIPE, + STATE(916), 1, + aux_sym_constraint_elem_repeat1, + ACTIONS(2043), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51775] = 3, + [51726] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(2048), 1, anon_sym_LF, - ACTIONS(2054), 4, + ACTIONS(2050), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51788] = 3, + [51739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, + ACTIONS(2052), 1, + anon_sym_RBRACE, + STATE(878), 1, + sym_qualified_type, + STATE(965), 1, + sym_field_declaration, + [51758] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2056), 1, + ACTIONS(2054), 1, anon_sym_LF, - ACTIONS(2058), 4, + ACTIONS(2056), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51801] = 3, + [51771] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2060), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2058), 1, anon_sym_LF, - ACTIONS(2062), 4, + STATE(916), 1, + aux_sym_constraint_elem_repeat1, + ACTIONS(2060), 2, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [51814] = 3, + [51788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_struct, + STATE(979), 1, + sym_struct_term, + STATE(1004), 1, + sym_struct_type, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_TILDE, + [51805] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2064), 1, @@ -51457,32 +51451,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51827] = 6, + [51818] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(1939), 1, + anon_sym_PIPE, + ACTIONS(2068), 1, + anon_sym_LF, + STATE(881), 1, + aux_sym_struct_elem_repeat1, + ACTIONS(2070), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [51835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1907), 1, anon_sym_STAR, - ACTIONS(2068), 1, + ACTIONS(2072), 1, anon_sym_RBRACE, - STATE(861), 1, + STATE(878), 1, sym_qualified_type, - STATE(1090), 1, + STATE(1041), 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, + [51854] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2074), 1, @@ -51492,84 +51486,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51876] = 5, + [51867] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_PIPE, ACTIONS(2078), 1, anon_sym_LF, - STATE(915), 1, - aux_sym_struct_elem_repeat1, - ACTIONS(2080), 2, + ACTIONS(2080), 4, anon_sym_SEMI, anon_sym_RBRACE, - [51893] = 3, - ACTIONS(286), 1, + anon_sym_case, + anon_sym_default, + [51880] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(1733), 1, + anon_sym_LBRACK, ACTIONS(2082), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_literal_value, + STATE(844), 1, + sym_type_arguments, + [51899] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2084), 1, anon_sym_LF, - ACTIONS(2084), 4, + ACTIONS(2086), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51906] = 5, - 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, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(2088), 1, - anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [51942] = 3, + [51912] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2090), 1, + ACTIONS(2088), 1, anon_sym_LF, - ACTIONS(2092), 4, + ACTIONS(2090), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51955] = 3, + [51925] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(1200), 1, + anon_sym_LBRACE, + ACTIONS(1733), 1, + anon_sym_LBRACK, + STATE(540), 1, + sym_literal_value, + STATE(844), 1, + sym_type_arguments, + [51944] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2092), 1, anon_sym_LF, - ACTIONS(2096), 4, + ACTIONS(2094), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51968] = 3, + [51957] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2098), 1, + ACTIONS(2096), 1, anon_sym_LF, - ACTIONS(2100), 4, + ACTIONS(2098), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51981] = 3, + [51970] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1989), 1, + sym_identifier, + ACTIONS(2100), 1, + anon_sym_RPAREN, + STATE(899), 1, + aux_sym_type_declaration_repeat1, + STATE(1143), 2, + sym_type_alias, + sym_type_spec, + [51987] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2102), 1, @@ -51579,7 +51584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [51994] = 3, + [52000] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2106), 1, @@ -51589,7 +51594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52007] = 3, + [52013] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2110), 1, @@ -51599,77 +51604,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52020] = 3, - ACTIONS(286), 1, + [52026] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, ACTIONS(2114), 1, - anon_sym_LF, - ACTIONS(2116), 4, - anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [52033] = 3, + STATE(878), 1, + sym_qualified_type, + STATE(977), 1, + sym_field_declaration, + [52045] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2118), 1, + ACTIONS(2116), 1, anon_sym_LF, - ACTIONS(2120), 4, + ACTIONS(2118), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52046] = 3, + [52058] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2122), 1, + ACTIONS(2120), 1, anon_sym_LF, - ACTIONS(2124), 4, + ACTIONS(2122), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52059] = 3, + [52071] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2126), 1, + ACTIONS(2124), 1, anon_sym_LF, - ACTIONS(2128), 4, + ACTIONS(2126), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52072] = 3, + [52084] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2128), 1, anon_sym_LF, - ACTIONS(2132), 4, + ACTIONS(2130), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52085] = 3, + [52097] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2134), 1, + ACTIONS(2132), 1, anon_sym_LF, - ACTIONS(2136), 4, + ACTIONS(2134), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52098] = 3, + [52110] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2136), 1, anon_sym_LF, - ACTIONS(2140), 4, + ACTIONS(2138), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52111] = 3, + [52123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, + ACTIONS(2140), 1, + anon_sym_RBRACE, + STATE(878), 1, + sym_qualified_type, + STATE(1041), 1, + sym_field_declaration, + [52142] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2142), 1, @@ -51679,7 +51700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52124] = 3, + [52155] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(2146), 1, @@ -51689,78 +51710,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52137] = 6, - ACTIONS(3), 1, + [52168] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, ACTIONS(2150), 1, + anon_sym_LF, + ACTIONS(2152), 4, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [52156] = 6, + anon_sym_case, + anon_sym_default, + [52181] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2154), 1, + anon_sym_LF, + ACTIONS(2156), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [52194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(1712), 1, - anon_sym_LBRACK, - ACTIONS(2152), 1, + ACTIONS(1076), 1, anon_sym_LBRACE, - STATE(355), 1, + ACTIONS(1733), 1, + anon_sym_LBRACK, + STATE(400), 1, sym_literal_value, - STATE(828), 1, + STATE(844), 1, sym_type_arguments, - [52175] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(2154), 1, - anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [52194] = 3, + [52213] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2156), 1, + ACTIONS(2158), 1, anon_sym_LF, - ACTIONS(2158), 4, + ACTIONS(2160), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52207] = 3, + [52226] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2160), 1, + ACTIONS(2162), 1, anon_sym_LF, - ACTIONS(2162), 4, + ACTIONS(2164), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [52220] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - ACTIONS(2164), 1, - anon_sym_RBRACE, - STATE(861), 1, - sym_qualified_type, - STATE(983), 1, - sym_field_declaration, [52239] = 3, ACTIONS(286), 1, sym_comment, @@ -51786,23 +51788,32 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(2174), 1, anon_sym_DQUOTE2, - STATE(980), 1, + STATE(991), 1, aux_sym_interpreted_string_literal_repeat1, ACTIONS(2176), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52279] = 5, + [52279] = 4, ACTIONS(286), 1, sym_comment, ACTIONS(2178), 1, - anon_sym_LF, - ACTIONS(2181), 1, - anon_sym_SEMI, - ACTIONS(2184), 1, - anon_sym_RBRACE, - STATE(955), 1, - aux_sym_field_declaration_list_repeat1, - [52295] = 5, + anon_sym_DQUOTE2, + STATE(956), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2180), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52293] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2182), 1, + anon_sym_DQUOTE2, + STATE(997), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2184), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52307] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2186), 1, @@ -51811,2343 +51822,2341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2190), 1, anon_sym_COLON, - STATE(1075), 1, + STATE(1085), 1, aux_sym_literal_value_repeat1, - [52311] = 4, - ACTIONS(286), 1, + [52323] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - anon_sym_DQUOTE2, - STATE(963), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2194), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [52325] = 5, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_STAR, + STATE(878), 1, + sym_qualified_type, + STATE(1041), 1, + sym_field_declaration, + [52339] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2196), 1, + ACTIONS(2192), 1, anon_sym_LF, - ACTIONS(2198), 1, + ACTIONS(2194), 1, anon_sym_SEMI, - ACTIONS(2200), 1, + ACTIONS(2196), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(989), 1, aux_sym_field_declaration_list_repeat1, - [52341] = 5, + [52355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, - anon_sym_LPAREN, - ACTIONS(2204), 1, - anon_sym_COMMA, - ACTIONS(2206), 1, - anon_sym_RBRACK, - STATE(1072), 1, - aux_sym_type_arguments_repeat1, - [52357] = 5, + ACTIONS(2198), 1, + sym_identifier, + ACTIONS(2201), 1, + anon_sym_RPAREN, + STATE(960), 1, + aux_sym_var_declaration_repeat1, + STATE(1147), 1, + sym_var_spec, + [52371] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2208), 1, + ACTIONS(2203), 1, anon_sym_LF, - ACTIONS(2210), 1, + ACTIONS(2205), 1, anon_sym_SEMI, - ACTIONS(2212), 1, + ACTIONS(2207), 1, anon_sym_RBRACE, - STATE(1001), 1, + STATE(995), 1, aux_sym_interface_type_repeat1, - [52373] = 5, + [52387] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2190), 1, anon_sym_COLON, - ACTIONS(2214), 1, + ACTIONS(2209), 1, anon_sym_COMMA, - ACTIONS(2216), 1, + ACTIONS(2211), 1, anon_sym_RBRACE, - STATE(1055), 1, + STATE(1094), 1, aux_sym_literal_value_repeat1, - [52389] = 5, + [52403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2213), 1, sym_identifier, - ACTIONS(2220), 1, + ACTIONS(2215), 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, - ACTIONS(2222), 1, - anon_sym_DQUOTE2, - STATE(981), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, + STATE(960), 1, + aux_sym_var_declaration_repeat1, + STATE(1147), 1, + sym_var_spec, [52419] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2217), 1, anon_sym_LF, - ACTIONS(2228), 1, + ACTIONS(2219), 1, anon_sym_SEMI, - ACTIONS(2230), 1, + ACTIONS(2221), 1, anon_sym_RBRACE, - STATE(960), 1, + STATE(961), 1, aux_sym_interface_type_repeat1, [52435] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2232), 1, - sym_identifier, - 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, sym_comment, - ACTIONS(2237), 1, + ACTIONS(2223), 1, anon_sym_LF, - ACTIONS(2239), 1, + ACTIONS(2225), 1, anon_sym_SEMI, - ACTIONS(2241), 1, + ACTIONS(2227), 1, anon_sym_RBRACE, - STATE(958), 1, + STATE(959), 1, aux_sym_field_declaration_list_repeat1, - [52467] = 5, + [52451] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2190), 1, anon_sym_COLON, - ACTIONS(2243), 1, + ACTIONS(2229), 1, anon_sym_COMMA, - ACTIONS(2245), 1, + ACTIONS(2231), 1, anon_sym_RBRACE, - STATE(1101), 1, + STATE(1102), 1, aux_sym_literal_value_repeat1, - [52483] = 5, + [52467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [52477] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2247), 1, - anon_sym_LF, - ACTIONS(2249), 1, - anon_sym_SEMI, - ACTIONS(2251), 1, - anon_sym_RBRACE, - STATE(1001), 1, - aux_sym_interface_type_repeat1, - [52499] = 4, + ACTIONS(2233), 1, + anon_sym_DQUOTE2, + STATE(997), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2184), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52491] = 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, + ACTIONS(2235), 1, + anon_sym_COMMA, + STATE(969), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(2238), 2, + anon_sym_RBRACK, + anon_sym_COLON, + [52505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(2240), 1, sym_identifier, - ACTIONS(1947), 1, - anon_sym_STAR, - STATE(861), 1, - sym_qualified_type, - STATE(1090), 1, - sym_field_declaration, - [52529] = 5, + ACTIONS(2243), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_const_declaration_repeat1, + STATE(1172), 1, + sym_const_spec, + [52521] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2255), 1, - anon_sym_LF, - ACTIONS(2257), 1, - anon_sym_SEMI, - ACTIONS(2259), 1, - anon_sym_RBRACE, - STATE(955), 1, - aux_sym_field_declaration_list_repeat1, - [52545] = 4, + ACTIONS(2245), 1, + anon_sym_DQUOTE2, + STATE(972), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2247), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52535] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2249), 1, anon_sym_DQUOTE2, - STATE(981), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2184), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52559] = 4, + [52549] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2263), 1, + ACTIONS(2251), 1, anon_sym_DQUOTE2, - STATE(972), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2265), 2, + ACTIONS(2184), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52573] = 5, + [52563] = 5, ACTIONS(3), 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(2190), 1, + anon_sym_COLON, + ACTIONS(2253), 1, + anon_sym_COMMA, + ACTIONS(2255), 1, + anon_sym_RBRACE, + STATE(1068), 1, + aux_sym_literal_value_repeat1, + [52579] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2257), 1, anon_sym_DQUOTE2, - STATE(981), 1, + STATE(968), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2259), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52603] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LF, - ACTIONS(2273), 1, - anon_sym_SEMI, - ACTIONS(2275), 1, - anon_sym_RBRACE, - STATE(985), 1, - aux_sym_interface_type_repeat1, - [52619] = 5, + [52593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2280), 1, - anon_sym_RPAREN, - STATE(977), 1, - aux_sym_var_declaration_repeat1, - STATE(1155), 1, - sym_var_spec, - [52635] = 3, + ACTIONS(1887), 1, + anon_sym_LPAREN, + ACTIONS(2261), 1, + anon_sym_LBRACK, + STATE(28), 1, + sym_parameter_list, + STATE(1160), 1, + sym_type_parameter_list, + [52609] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LF, - ACTIONS(2284), 3, + ACTIONS(2265), 1, anon_sym_SEMI, + ACTIONS(2267), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [52647] = 4, + STATE(996), 1, + aux_sym_field_declaration_list_repeat1, + [52625] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym_LBRACE, - ACTIONS(2253), 1, + ACTIONS(2269), 1, anon_sym_if, - STATE(888), 2, + STATE(934), 2, sym_block, sym_if_statement, - [52661] = 4, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_DQUOTE2, - 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_DQUOTE2, - STATE(981), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2290), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [52689] = 3, + [52639] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(1911), 1, anon_sym_LF, - ACTIONS(1940), 3, + ACTIONS(1913), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [52701] = 5, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_LF, - ACTIONS(2295), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_RBRACE, - STATE(993), 1, - aux_sym_field_declaration_list_repeat1, - [52717] = 5, + [52651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2213), 1, sym_identifier, - ACTIONS(2301), 1, + ACTIONS(2271), 1, anon_sym_RPAREN, - STATE(1003), 1, + STATE(963), 1, aux_sym_var_declaration_repeat1, - STATE(1155), 1, + STATE(1147), 1, sym_var_spec, - [52733] = 5, + [52667] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 1, + sym_identifier, + ACTIONS(2275), 1, + anon_sym_RPAREN, + STATE(970), 1, + aux_sym_const_declaration_repeat1, + STATE(1172), 1, + sym_const_spec, + [52683] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2041), 1, anon_sym_LF, - ACTIONS(2305), 1, + ACTIONS(2043), 3, anon_sym_SEMI, - ACTIONS(2307), 1, anon_sym_RBRACE, - STATE(1001), 1, - aux_sym_interface_type_repeat1, - [52749] = 5, - ACTIONS(3), 1, + anon_sym_PIPE, + [52695] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, - ACTIONS(2309), 1, - anon_sym_COMMA, - ACTIONS(2311), 1, + ACTIONS(2277), 1, + anon_sym_LF, + ACTIONS(1749), 3, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(1087), 1, - aux_sym_literal_value_repeat1, - [52765] = 3, + anon_sym_PIPE, + [52707] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2279), 1, anon_sym_LF, - ACTIONS(2315), 3, + ACTIONS(2281), 1, anon_sym_SEMI, + ACTIONS(2283), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [52777] = 3, + STATE(995), 1, + aux_sym_interface_type_repeat1, + [52723] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2285), 1, anon_sym_LF, - ACTIONS(2319), 3, + ACTIONS(2287), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [52789] = 5, + [52735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2273), 1, sym_identifier, - ACTIONS(2321), 1, + ACTIONS(2289), 1, anon_sym_RPAREN, - STATE(962), 1, + STATE(981), 1, aux_sym_const_declaration_repeat1, - STATE(1169), 1, + STATE(1172), 1, sym_const_spec, - [52805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, - ACTIONS(2323), 1, - anon_sym_COMMA, - ACTIONS(2325), 1, - anon_sym_RBRACE, - STATE(1052), 1, - aux_sym_literal_value_repeat1, - [52821] = 4, + [52751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2291), 1, + anon_sym_LPAREN, + ACTIONS(2293), 1, anon_sym_COMMA, - STATE(991), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(2330), 2, + ACTIONS(2295), 1, anon_sym_RBRACK, - anon_sym_COLON, - [52835] = 5, + STATE(1069), 1, + aux_sym_type_arguments_repeat1, + [52767] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2297), 1, anon_sym_LF, - ACTIONS(2334), 1, + ACTIONS(2299), 1, anon_sym_SEMI, - ACTIONS(2336), 1, + ACTIONS(2301), 1, anon_sym_RBRACE, - STATE(968), 1, + STATE(995), 1, aux_sym_interface_type_repeat1, - [52851] = 5, + [52783] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2338), 1, + ACTIONS(2303), 1, anon_sym_LF, - ACTIONS(2340), 1, + ACTIONS(2306), 1, anon_sym_SEMI, - ACTIONS(2342), 1, + ACTIONS(2309), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(989), 1, aux_sym_field_declaration_list_repeat1, - [52867] = 5, - ACTIONS(3), 1, + [52799] = 5, + ACTIONS(286), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, - ACTIONS(2344), 1, - anon_sym_COMMA, - ACTIONS(2346), 1, + ACTIONS(2311), 1, + anon_sym_LF, + ACTIONS(2313), 1, + anon_sym_SEMI, + ACTIONS(2315), 1, anon_sym_RBRACE, - STATE(1049), 1, - aux_sym_literal_value_repeat1, - [52883] = 4, + STATE(989), 1, + aux_sym_field_declaration_list_repeat1, + [52815] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2348), 1, + ACTIONS(2317), 1, anon_sym_DQUOTE2, - STATE(975), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2350), 2, + ACTIONS(2184), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52897] = 5, + [52829] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2319), 1, + anon_sym_DQUOTE2, + STATE(973), 1, + aux_sym_interpreted_string_literal_repeat1, + ACTIONS(2321), 2, + sym__interpreted_string_literal_basic_content, + sym_escape_sequence, + [52843] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2323), 1, anon_sym_LF, - ACTIONS(2354), 1, + ACTIONS(2325), 3, anon_sym_SEMI, - ACTIONS(2356), 1, anon_sym_RBRACE, - STATE(971), 1, - aux_sym_field_declaration_list_repeat1, - [52913] = 4, + anon_sym_PIPE, + [52855] = 5, 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(2190), 1, + anon_sym_COLON, + ACTIONS(2327), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, + anon_sym_RBRACE, + STATE(1067), 1, + aux_sym_literal_value_repeat1, + [52871] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2331), 1, + anon_sym_LF, + ACTIONS(2334), 1, + anon_sym_SEMI, + ACTIONS(2337), 1, + anon_sym_RBRACE, + STATE(995), 1, + aux_sym_interface_type_repeat1, + [52887] = 5, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LF, + ACTIONS(2341), 1, + anon_sym_SEMI, + ACTIONS(2343), 1, + anon_sym_RBRACE, + STATE(989), 1, + aux_sym_field_declaration_list_repeat1, + [52903] = 4, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2345), 1, anon_sym_DQUOTE2, - STATE(981), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2347), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52941] = 4, + [52917] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(2350), 1, anon_sym_DQUOTE2, - STATE(981), 1, + STATE(1006), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2352), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52955] = 4, + [52931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1989), 1, + sym_identifier, + ACTIONS(2354), 1, + anon_sym_LPAREN, + STATE(935), 2, + sym_type_alias, + sym_type_spec, + [52945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 1, + anon_sym_COLON, + ACTIONS(2356), 1, + anon_sym_COMMA, + ACTIONS(2358), 1, + anon_sym_RBRACE, + STATE(1053), 1, + aux_sym_literal_value_repeat1, + [52961] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(2360), 1, anon_sym_DQUOTE2, - STATE(998), 1, + STATE(1007), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2366), 2, + ACTIONS(2362), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [52969] = 5, + [52975] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2368), 1, + ACTIONS(2364), 1, anon_sym_LF, - ACTIONS(2371), 1, + ACTIONS(2366), 1, anon_sym_SEMI, - ACTIONS(2374), 1, + ACTIONS(2368), 1, anon_sym_RBRACE, - STATE(1001), 1, + STATE(988), 1, aux_sym_interface_type_repeat1, - [52985] = 4, + [52991] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(2376), 1, - anon_sym_DQUOTE2, - STATE(999), 1, - aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2378), 2, - sym__interpreted_string_literal_basic_content, - sym_escape_sequence, - [52999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 1, - sym_identifier, - ACTIONS(2380), 1, - anon_sym_RPAREN, - STATE(977), 1, - aux_sym_var_declaration_repeat1, - STATE(1155), 1, - sym_var_spec, - [53015] = 3, + ACTIONS(2370), 1, + anon_sym_LF, + ACTIONS(2372), 1, + anon_sym_SEMI, + ACTIONS(2374), 1, + anon_sym_RBRACE, + STATE(990), 1, + aux_sym_field_declaration_list_repeat1, + [53007] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2382), 1, + ACTIONS(2376), 1, anon_sym_LF, - ACTIONS(1754), 3, + ACTIONS(2378), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PIPE, - [53027] = 3, + [53019] = 5, ACTIONS(286), 1, sym_comment, - ACTIONS(1951), 1, + ACTIONS(2380), 1, anon_sym_LF, - ACTIONS(1953), 3, + ACTIONS(2382), 1, anon_sym_SEMI, + ACTIONS(2384), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [53039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [53049] = 4, + STATE(984), 1, + aux_sym_interface_type_repeat1, + [53035] = 4, ACTIONS(286), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(2386), 1, anon_sym_DQUOTE2, - STATE(1008), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2386), 2, + ACTIONS(2184), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, - [53063] = 4, + [53049] = 4, ACTIONS(286), 1, sym_comment, ACTIONS(2388), 1, anon_sym_DQUOTE2, - STATE(981), 1, + STATE(997), 1, aux_sym_interpreted_string_literal_repeat1, - ACTIONS(2224), 2, + ACTIONS(2184), 2, sym__interpreted_string_literal_basic_content, sym_escape_sequence, + [53063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_LBRACE, + ACTIONS(2269), 1, + anon_sym_if, + STATE(906), 2, + sym_block, + sym_if_statement, [53077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(2082), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_literal_value, + [53090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, anon_sym_DQUOTE, ACTIONS(2390), 1, sym_raw_string_literal, - STATE(1131), 1, + STATE(273), 1, sym_interpreted_string_literal, - [53090] = 3, - ACTIONS(286), 1, + [53103] = 4, + ACTIONS(3), 1, sym_comment, ACTIONS(2392), 1, + anon_sym_RPAREN, + ACTIONS(2394), 1, + anon_sym_COMMA, + STATE(1011), 1, + aux_sym_parameter_list_repeat1, + [53116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1553), 1, + anon_sym_RBRACK, + ACTIONS(2397), 1, + anon_sym_COMMA, + STATE(1058), 1, + aux_sym_type_parameter_list_repeat1, + [53129] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_LF, + ACTIONS(2401), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [53140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1162), 1, + anon_sym_struct, + ACTIONS(2403), 1, + sym_identifier, + STATE(985), 1, + sym_struct_type, + [53153] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2405), 1, anon_sym_LF, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53101] = 4, + [53164] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2409), 1, + anon_sym_LF, + ACTIONS(2411), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [53175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2273), 1, sym_identifier, - ACTIONS(2396), 1, + ACTIONS(2413), 1, anon_sym_LPAREN, - STATE(910), 1, + STATE(914), 1, sym_const_spec, - [53114] = 4, + [53188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2213), 1, sym_identifier, - ACTIONS(2398), 1, + ACTIONS(2415), 1, anon_sym_LPAREN, - STATE(917), 1, + STATE(919), 1, sym_var_spec, - [53127] = 4, + [53201] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2417), 1, + anon_sym_LF, + ACTIONS(2337), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [53212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - ACTIONS(2400), 1, + ACTIONS(2419), 1, sym_identifier, - STATE(667), 1, + STATE(661), 1, sym_parameter_list, - [53140] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(1992), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_literal_value, - [53153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [53162] = 4, - ACTIONS(3), 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, - ACTIONS(3), 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, - ACTIONS(3), 1, + [53225] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2408), 3, + ACTIONS(2421), 1, + anon_sym_LF, + ACTIONS(2423), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1094), 1, - anon_sym_LBRACE, - ACTIONS(2410), 1, - anon_sym_COMMA, - STATE(1019), 1, - aux_sym_expression_list_repeat1, - [53210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2413), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_RBRACK, - STATE(1106), 1, - aux_sym_type_parameter_list_repeat1, - [53223] = 4, + [53236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1367), 1, + ACTIONS(2425), 3, anon_sym_RPAREN, - ACTIONS(2417), 1, anon_sym_COMMA, - STATE(1107), 1, - aux_sym_parameter_list_repeat1, - [53236] = 2, + anon_sym_RBRACK, + [53245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2419), 3, + ACTIONS(2427), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [53245] = 2, + [53254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 3, + ACTIONS(2425), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - [53254] = 2, - ACTIONS(3), 1, + [53263] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2423), 3, + ACTIONS(2429), 1, + anon_sym_LF, + ACTIONS(2431), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53263] = 2, - ACTIONS(3), 1, + [53274] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2425), 3, + ACTIONS(2433), 1, + anon_sym_LF, + ACTIONS(2435), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53272] = 4, + [53285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2437), 1, anon_sym_RPAREN, - ACTIONS(2429), 1, + ACTIONS(2439), 1, anon_sym_COMMA, - STATE(1042), 1, + STATE(1043), 1, aux_sym_parameter_list_repeat1, - [53285] = 4, + [53298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1559), 1, anon_sym_LBRACE, - STATE(505), 1, + STATE(504), 1, sym_block, - [53298] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2431), 1, - anon_sym_LF, - ACTIONS(2433), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [53309] = 4, + [53311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 1, + ACTIONS(2441), 1, anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(991), 1, + STATE(969), 1, aux_sym_type_arguments_repeat1, - [53322] = 2, + [53324] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_LF, + ACTIONS(2447), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [53335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 3, + ACTIONS(2449), 3, anon_sym_RBRACE, anon_sym_case, anon_sym_default, - [53331] = 4, + [53344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2451), 1, anon_sym_RPAREN, - ACTIONS(2443), 1, + ACTIONS(2453), 1, anon_sym_COMMA, - STATE(1048), 1, + STATE(1049), 1, aux_sym_expression_list_repeat1, - [53344] = 4, + [53357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2455), 1, anon_sym_COMMA, - ACTIONS(2447), 1, + ACTIONS(2457), 1, anon_sym_RBRACK, - STATE(1050), 1, + STATE(1051), 1, aux_sym_type_arguments_repeat1, - [53357] = 3, - ACTIONS(286), 1, + [53370] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 1, - anon_sym_LF, - ACTIONS(2394), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [53368] = 3, - ACTIONS(286), 1, + ACTIONS(2459), 1, + anon_sym_COMMA, + ACTIONS(2461), 1, + anon_sym_RBRACK, + STATE(1012), 1, + aux_sym_type_parameter_list_repeat1, + [53383] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, - anon_sym_LF, - ACTIONS(2451), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [53379] = 4, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + anon_sym_LBRACE, + STATE(500), 1, + sym_literal_value, + [53396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 1, + ACTIONS(2356), 1, anon_sym_COMMA, - ACTIONS(2325), 1, + ACTIONS(2358), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1053), 1, aux_sym_literal_value_repeat1, - [53392] = 4, + [53409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(1970), 1, + ACTIONS(31), 1, anon_sym_LBRACE, - STATE(516), 1, - sym_literal_value, - [53405] = 3, + ACTIONS(775), 1, + anon_sym_LPAREN, + STATE(336), 1, + sym_block, + [53422] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2392), 1, + ACTIONS(2429), 1, anon_sym_LF, - ACTIONS(2394), 2, + ACTIONS(2431), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53416] = 4, + [53433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1292), 1, anon_sym_RPAREN, - ACTIONS(1312), 1, + ACTIONS(1294), 1, anon_sym_COMMA, - STATE(1056), 1, + STATE(1057), 1, aux_sym_argument_list_repeat1, - [53429] = 2, + [53446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(200), 3, + ACTIONS(2327), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53438] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, - anon_sym_TILDE, - STATE(1005), 1, - sym_constraint_term, - [53451] = 3, + STATE(1067), 1, + aux_sym_literal_value_repeat1, + [53459] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2392), 1, + ACTIONS(2463), 1, anon_sym_LF, - ACTIONS(2394), 2, + ACTIONS(2309), 2, anon_sym_SEMI, anon_sym_RBRACE, - [53462] = 4, + [53470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1349), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + [53479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1461), 1, anon_sym_RPAREN, - ACTIONS(2457), 1, + ACTIONS(2465), 1, anon_sym_COMMA, - STATE(1107), 1, + STATE(1011), 1, aux_sym_parameter_list_repeat1, - [53475] = 4, + [53492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(2291), 1, + anon_sym_LPAREN, + ACTIONS(2467), 2, anon_sym_COMMA, - ACTIONS(2462), 1, anon_sym_RBRACK, - STATE(1043), 1, - aux_sym_type_parameter_list_repeat1, - [53488] = 4, + [53503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 1, + ACTIONS(494), 1, anon_sym_RPAREN, - ACTIONS(2464), 1, + ACTIONS(2469), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1075), 1, aux_sym_argument_list_repeat1, - [53501] = 4, + [53516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(486), 1, - anon_sym_RPAREN, - ACTIONS(2467), 1, + ACTIONS(1094), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, anon_sym_COMMA, - STATE(1044), 1, - aux_sym_argument_list_repeat1, - [53514] = 4, + STATE(1046), 1, + aux_sym_expression_list_repeat1, + [53529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 1, - anon_sym_COMMA, - ACTIONS(2472), 1, - anon_sym_RBRACE, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [53527] = 4, + ACTIONS(658), 1, + anon_sym_LPAREN, + ACTIONS(2023), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_literal_value, + [53542] = 2, ACTIONS(3), 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, + ACTIONS(2474), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [53551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_RPAREN, ACTIONS(2476), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1114), 1, aux_sym_expression_list_repeat1, - [53553] = 4, - ACTIONS(3), 1, + [53564] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(404), 1, - anon_sym_RBRACE, ACTIONS(2478), 1, - anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [53566] = 4, + anon_sym_LF, + ACTIONS(2480), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [53575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, + ACTIONS(1581), 1, anon_sym_RBRACK, - ACTIONS(2480), 1, + ACTIONS(2482), 1, anon_sym_COMMA, - STATE(991), 1, + STATE(969), 1, aux_sym_type_arguments_repeat1, - [53579] = 4, + [53588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(1451), 1, anon_sym_RPAREN, - ACTIONS(2482), 1, + ACTIONS(2484), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53592] = 4, + STATE(1011), 1, + aux_sym_parameter_list_repeat1, + [53601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(422), 1, + ACTIONS(416), 1, anon_sym_RBRACE, - ACTIONS(2484), 1, + ACTIONS(2486), 1, anon_sym_COMMA, - STATE(1046), 1, + STATE(1082), 1, aux_sym_literal_value_repeat1, - [53605] = 3, - ACTIONS(3), 1, + [53614] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_COLON, - ACTIONS(2472), 2, - anon_sym_COMMA, + ACTIONS(2429), 1, + anon_sym_LF, + ACTIONS(2431), 2, + anon_sym_SEMI, anon_sym_RBRACE, - [53616] = 4, + [53625] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(2429), 1, + anon_sym_LF, + ACTIONS(2431), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [53636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 1, + ACTIONS(1288), 1, anon_sym_RPAREN, - ACTIONS(1248), 1, + ACTIONS(1290), 1, anon_sym_COMMA, - STATE(1047), 1, + STATE(1045), 1, aux_sym_argument_list_repeat1, - [53629] = 4, + [53649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(402), 1, - anon_sym_RBRACE, - ACTIONS(2486), 1, - anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [53642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(484), 1, + ACTIONS(462), 1, anon_sym_RPAREN, ACTIONS(2488), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1075), 1, aux_sym_argument_list_repeat1, - [53655] = 4, + [53662] = 4, ACTIONS(3), 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, + ACTIONS(2493), 1, + anon_sym_RBRACK, + STATE(1058), 1, + aux_sym_type_parameter_list_repeat1, + [53675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - [53677] = 4, + ACTIONS(200), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [53684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2495), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [53693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_DQUOTE, + ACTIONS(2497), 1, + sym_raw_string_literal, + STATE(293), 1, + sym_interpreted_string_literal, + [53706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(2499), 1, + sym_raw_string_literal, + STATE(1122), 1, + sym_interpreted_string_literal, + [53719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2501), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [53728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(2503), 1, + sym_raw_string_literal, + STATE(1153), 1, + sym_interpreted_string_literal, + [53741] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + sym_identifier, + ACTIONS(2507), 1, + anon_sym_TILDE, + STATE(982), 1, + sym_constraint_term, + [53754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(470), 1, + anon_sym_RPAREN, + ACTIONS(2509), 1, anon_sym_COMMA, - ACTIONS(2346), 1, + STATE(1075), 1, + aux_sym_argument_list_repeat1, + [53767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(404), 1, anon_sym_RBRACE, - STATE(1049), 1, + ACTIONS(2511), 1, + anon_sym_COMMA, + STATE(1082), 1, aux_sym_literal_value_repeat1, - [53690] = 4, + [53780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(520), 1, - anon_sym_RPAREN, - ACTIONS(2492), 1, + ACTIONS(420), 1, + anon_sym_RBRACE, + ACTIONS(2513), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53703] = 4, + STATE(1082), 1, + aux_sym_literal_value_repeat1, + [53793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 1, + ACTIONS(1575), 1, + anon_sym_RBRACK, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(2494), 1, - anon_sym_COLON, - STATE(1029), 1, + STATE(969), 1, aux_sym_type_arguments_repeat1, - [53716] = 4, + [53806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, + ACTIONS(538), 1, anon_sym_RPAREN, - ACTIONS(1308), 1, + ACTIONS(2517), 1, anon_sym_COMMA, - STATE(1110), 1, - aux_sym_argument_list_repeat1, - [53729] = 4, + STATE(1114), 1, + aux_sym_expression_list_repeat1, + [53819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 1, + ACTIONS(2467), 3, anon_sym_RPAREN, - ACTIONS(2498), 1, anon_sym_COMMA, - STATE(1051), 1, - aux_sym_expression_list_repeat1, - [53742] = 4, + anon_sym_RBRACK, + [53828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, + ACTIONS(1320), 1, anon_sym_RPAREN, - ACTIONS(2500), 1, + ACTIONS(1322), 1, anon_sym_COMMA, - STATE(1107), 1, - aux_sym_parameter_list_repeat1, - [53755] = 4, + STATE(1066), 1, + aux_sym_argument_list_repeat1, + [53841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2293), 1, + anon_sym_COMMA, + ACTIONS(2295), 1, + anon_sym_RBRACK, + STATE(1069), 1, + aux_sym_type_arguments_repeat1, + [53854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(530), 1, anon_sym_RPAREN, - ACTIONS(2502), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1114), 1, aux_sym_expression_list_repeat1, - [53768] = 4, + [53867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(526), 1, + ACTIONS(1347), 1, anon_sym_RPAREN, - ACTIONS(2505), 1, + ACTIONS(2521), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [53781] = 4, + STATE(1075), 1, + aux_sym_argument_list_repeat1, + [53880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, + ACTIONS(2253), 1, anon_sym_COMMA, - ACTIONS(2188), 1, + ACTIONS(2255), 1, anon_sym_RBRACE, - STATE(1075), 1, + STATE(1068), 1, aux_sym_literal_value_repeat1, - [53794] = 4, + [53893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, + ACTIONS(2524), 1, anon_sym_RPAREN, - ACTIONS(1316), 1, + ACTIONS(2526), 1, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_argument_list_repeat1, - [53807] = 2, + STATE(1052), 1, + aux_sym_parameter_list_repeat1, + [53906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 3, + ACTIONS(2528), 1, + anon_sym_RPAREN, + ACTIONS(2530), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - [53816] = 4, + STATE(1070), 1, + aux_sym_expression_list_repeat1, + [53919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(548), 1, sym_block, - [53829] = 4, + [53932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, + ACTIONS(2532), 1, + anon_sym_RPAREN, + ACTIONS(2534), 1, anon_sym_COMMA, - ACTIONS(2206), 1, - anon_sym_RBRACK, - STATE(1072), 1, - aux_sym_type_arguments_repeat1, - [53842] = 4, + STATE(1074), 1, + aux_sym_expression_list_repeat1, + [53945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_RBRACK, - ACTIONS(2507), 1, + ACTIONS(502), 1, + anon_sym_RPAREN, + ACTIONS(2536), 1, anon_sym_COMMA, - STATE(991), 1, - aux_sym_type_arguments_repeat1, - [53855] = 4, + STATE(1075), 1, + aux_sym_argument_list_repeat1, + [53958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(2152), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_literal_value, - [53868] = 4, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(2541), 1, + anon_sym_RBRACE, + STATE(1082), 1, + aux_sym_literal_value_repeat1, + [53971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(658), 1, anon_sym_LPAREN, - ACTIONS(1178), 1, + ACTIONS(1200), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(540), 1, sym_literal_value, - [53881] = 4, + [53984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(412), 1, - anon_sym_RBRACE, - ACTIONS(2509), 1, + ACTIONS(2190), 1, + anon_sym_COLON, + ACTIONS(2541), 2, anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [53894] = 4, + anon_sym_RBRACE, + [53995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, - anon_sym_COMMA, - ACTIONS(2216), 1, + ACTIONS(418), 1, anon_sym_RBRACE, - STATE(1055), 1, + ACTIONS(2543), 1, + anon_sym_COMMA, + STATE(1082), 1, aux_sym_literal_value_repeat1, - [53907] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2511), 1, - anon_sym_LF, - ACTIONS(2374), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [53918] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2513), 1, - anon_sym_LF, - ACTIONS(2515), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [53929] = 4, + [54008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 1, - anon_sym_RPAREN, - ACTIONS(2519), 1, + ACTIONS(1361), 1, anon_sym_COMMA, - STATE(1066), 1, + ACTIONS(1621), 1, + anon_sym_LBRACE, + STATE(1046), 1, aux_sym_expression_list_repeat1, - [53942] = 4, + [54021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, - anon_sym_RPAREN, - ACTIONS(2523), 1, + ACTIONS(2238), 3, anon_sym_COMMA, - STATE(1021), 1, - aux_sym_parameter_list_repeat1, - [53955] = 4, + anon_sym_RBRACK, + anon_sym_COLON, + [54030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, + ACTIONS(2545), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2527), 1, anon_sym_RBRACK, - STATE(1057), 1, - aux_sym_type_arguments_repeat1, - [53968] = 4, + [54039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(1557), 1, + anon_sym_LBRACE, + STATE(369), 1, + sym_block, + [54052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(2547), 1, anon_sym_RPAREN, - ACTIONS(2531), 1, + ACTIONS(2549), 1, anon_sym_COMMA, - STATE(1060), 1, + STATE(1100), 1, aux_sym_expression_list_repeat1, - [53981] = 2, + [54065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 3, + ACTIONS(2551), 1, anon_sym_RPAREN, + ACTIONS(2553), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2535), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [53999] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(742), 1, - anon_sym_LPAREN, - STATE(332), 1, - sym_block, - [54012] = 4, + STATE(1109), 1, + aux_sym_parameter_list_repeat1, + [54078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(508), 1, anon_sym_RPAREN, - ACTIONS(2537), 1, + ACTIONS(2555), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1075), 1, aux_sym_argument_list_repeat1, - [54025] = 4, + [54091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(410), 1, - anon_sym_RBRACE, - ACTIONS(2539), 1, + ACTIONS(2229), 1, anon_sym_COMMA, - STATE(1046), 1, + ACTIONS(2231), 1, + anon_sym_RBRACE, + STATE(1102), 1, aux_sym_literal_value_repeat1, - [54038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(742), 1, - anon_sym_LPAREN, - ACTIONS(1565), 1, - anon_sym_LBRACE, - STATE(374), 1, - sym_block, - [54051] = 4, + [54104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_RPAREN, - ACTIONS(2543), 1, + ACTIONS(412), 1, + anon_sym_RBRACE, + ACTIONS(2557), 1, anon_sym_COMMA, - STATE(1099), 1, - aux_sym_expression_list_repeat1, - [54064] = 3, - ACTIONS(286), 1, + STATE(1082), 1, + aux_sym_literal_value_repeat1, + [54117] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, - anon_sym_LF, - ACTIONS(2184), 2, - anon_sym_SEMI, + ACTIONS(2559), 3, anon_sym_RBRACE, - [54075] = 4, + anon_sym_case, + anon_sym_default, + [54126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(1308), 1, anon_sym_RPAREN, - ACTIONS(2549), 1, + ACTIONS(1310), 1, anon_sym_COMMA, - STATE(1064), 1, - aux_sym_parameter_list_repeat1, - [54088] = 4, + STATE(1106), 1, + aux_sym_argument_list_repeat1, + [54139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(1585), 1, + anon_sym_RBRACK, + ACTIONS(2561), 1, anon_sym_COMMA, - ACTIONS(2245), 1, - anon_sym_RBRACE, - STATE(1101), 1, - aux_sym_literal_value_repeat1, - [54101] = 4, + STATE(969), 1, + aux_sym_type_arguments_repeat1, + [54152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(560), 1, + ACTIONS(550), 1, anon_sym_RPAREN, - ACTIONS(2551), 1, + ACTIONS(2563), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1114), 1, aux_sym_expression_list_repeat1, - [54114] = 4, + [54165] = 4, ACTIONS(3), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, + ACTIONS(566), 1, anon_sym_RPAREN, - ACTIONS(1304), 1, + ACTIONS(2565), 1, anon_sym_COMMA, - STATE(1105), 1, - aux_sym_argument_list_repeat1, - [54140] = 4, + STATE(1114), 1, + aux_sym_expression_list_repeat1, + [54178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 1, + ACTIONS(562), 1, anon_sym_RPAREN, - ACTIONS(1322), 1, + ACTIONS(2567), 1, anon_sym_COMMA, - STATE(1086), 1, - aux_sym_argument_list_repeat1, - [54153] = 3, - ACTIONS(286), 1, + STATE(1114), 1, + aux_sym_expression_list_repeat1, + [54191] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2555), 1, - anon_sym_LF, - ACTIONS(2557), 2, - anon_sym_SEMI, + ACTIONS(2569), 3, anon_sym_RBRACE, - [54164] = 3, - ACTIONS(286), 1, + anon_sym_case, + anon_sym_default, + [54200] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 1, - anon_sym_LF, - ACTIONS(2561), 2, - anon_sym_SEMI, + ACTIONS(414), 1, anon_sym_RBRACE, - [54175] = 4, + ACTIONS(2571), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_literal_value_repeat1, + [54213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(1316), 1, anon_sym_RPAREN, - ACTIONS(2563), 1, + ACTIONS(1318), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_expression_list_repeat1, - [54188] = 4, + STATE(1092), 1, + aux_sym_argument_list_repeat1, + [54226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 1, + ACTIONS(2209), 1, anon_sym_COMMA, - ACTIONS(1621), 1, - anon_sym_LBRACE, - STATE(1019), 1, - aux_sym_expression_list_repeat1, - [54201] = 4, + ACTIONS(2211), 1, + anon_sym_RBRACE, + STATE(1094), 1, + aux_sym_literal_value_repeat1, + [54239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(418), 1, - anon_sym_RBRACE, - ACTIONS(2565), 1, + ACTIONS(2573), 1, + anon_sym_RPAREN, + ACTIONS(2575), 1, anon_sym_COMMA, - STATE(1046), 1, - aux_sym_literal_value_repeat1, - [54214] = 4, + STATE(1099), 1, + aux_sym_expression_list_repeat1, + [54252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(492), 1, + anon_sym_RPAREN, + ACTIONS(2577), 1, anon_sym_COMMA, - ACTIONS(2311), 1, - anon_sym_RBRACE, - STATE(1087), 1, - aux_sym_literal_value_repeat1, - [54227] = 4, + STATE(1075), 1, + aux_sym_argument_list_repeat1, + [54265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 1, + ACTIONS(2579), 1, anon_sym_RPAREN, - ACTIONS(2569), 1, + ACTIONS(2581), 1, anon_sym_COMMA, - STATE(1093), 1, + STATE(1098), 1, aux_sym_expression_list_repeat1, - [54240] = 4, + [54278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(742), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - STATE(419), 1, + STATE(393), 1, sym_block, - [54253] = 4, + [54291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(500), 1, + ACTIONS(1375), 1, anon_sym_RPAREN, - ACTIONS(2571), 1, + ACTIONS(2583), 1, anon_sym_COMMA, - STATE(1044), 1, - aux_sym_argument_list_repeat1, - [54266] = 4, + STATE(1011), 1, + aux_sym_parameter_list_repeat1, + [54304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1553), 1, + ACTIONS(2585), 1, + anon_sym_COMMA, + ACTIONS(2587), 1, anon_sym_RBRACK, - ACTIONS(2573), 1, + STATE(1097), 1, + aux_sym_type_arguments_repeat1, + [54317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 1, anon_sym_COMMA, - STATE(1043), 1, - aux_sym_type_parameter_list_repeat1, - [54279] = 4, + ACTIONS(2188), 1, + anon_sym_RBRACE, + STATE(1085), 1, + aux_sym_literal_value_repeat1, + [54330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, + ACTIONS(1246), 1, anon_sym_RPAREN, - ACTIONS(2577), 1, + ACTIONS(1248), 1, anon_sym_COMMA, - STATE(1107), 1, - aux_sym_parameter_list_repeat1, - [54292] = 4, + STATE(1081), 1, + aux_sym_argument_list_repeat1, + [54343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(658), 1, anon_sym_LPAREN, ACTIONS(1076), 1, - anon_sym_LBRACE, - STATE(393), 1, - sym_literal_value, - [54305] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2580), 1, - anon_sym_LF, - ACTIONS(2582), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [54316] = 4, + anon_sym_LBRACE, + STATE(400), 1, + sym_literal_value, + [54356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(472), 1, + ACTIONS(1094), 1, anon_sym_RPAREN, - ACTIONS(2584), 1, + ACTIONS(2589), 1, anon_sym_COMMA, - STATE(1044), 1, - aux_sym_argument_list_repeat1, - [54329] = 3, - ACTIONS(286), 1, + STATE(1114), 1, + aux_sym_expression_list_repeat1, + [54369] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_LF, - ACTIONS(2588), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [54340] = 3, + ACTIONS(2441), 1, + anon_sym_COMMA, + ACTIONS(2592), 1, + anon_sym_COLON, + STATE(1029), 1, + aux_sym_type_arguments_repeat1, + [54382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - ACTIONS(2533), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54351] = 2, + STATE(535), 1, + sym_parameter_list, + [54392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [54360] = 4, + ACTIONS(1312), 1, + anon_sym_LPAREN, + STATE(617), 1, + sym_parameter_list, + [54402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 1, - anon_sym_struct, - ACTIONS(2590), 1, + ACTIONS(2201), 2, + anon_sym_RPAREN, sym_identifier, - STATE(988), 1, - sym_struct_type, - [54373] = 2, + [54410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54381] = 3, + ACTIONS(2594), 1, + sym_identifier, + ACTIONS(2596), 1, + anon_sym_LPAREN, + [54420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(1076), 1, anon_sym_LBRACE, - STATE(516), 1, + STATE(400), 1, sym_literal_value, - [54391] = 3, + [54430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, + ACTIONS(2598), 1, + anon_sym_LPAREN, + STATE(477), 1, + sym_parameter_list, + [54440] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(803), 1, + anon_sym_LF, + ACTIONS(805), 1, + anon_sym_SEMI, + [54450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2600), 1, sym_identifier, - ACTIONS(2596), 1, + ACTIONS(2602), 1, anon_sym_LPAREN, - [54401] = 3, + [54460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - STATE(475), 1, + STATE(663), 1, sym_parameter_list, - [54411] = 3, + [54470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 1, - anon_sym_LBRACE, - STATE(393), 1, - sym_literal_value, - [54421] = 3, + ACTIONS(2604), 1, + sym_identifier, + ACTIONS(2606), 1, + anon_sym_LPAREN, + [54480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_LPAREN, - STATE(504), 1, - sym_parameter_list, - [54431] = 3, + [54490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2032), 1, + ACTIONS(2062), 1, anon_sym_struct, - STATE(988), 1, + STATE(985), 1, sym_struct_type, - [54441] = 2, + [54500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [54449] = 2, + ACTIONS(1080), 1, + anon_sym_LPAREN, + STATE(424), 1, + sym_argument_list, + [54510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54457] = 3, + ACTIONS(2612), 1, + sym_identifier, + ACTIONS(2614), 1, + anon_sym_LPAREN, + [54520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, + ACTIONS(2594), 1, + sym_identifier, + ACTIONS(2616), 1, + anon_sym_LPAREN, + [54530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [54538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(836), 1, + STATE(826), 1, sym_field_declaration_list, - [54467] = 3, + [54548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, - sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2620), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, + [54556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, anon_sym_LPAREN, - [54477] = 3, + STATE(503), 1, + sym_argument_list, + [54566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - STATE(661), 1, + STATE(660), 1, sym_parameter_list, - [54487] = 3, + [54576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1080), 1, - anon_sym_LPAREN, - STATE(413), 1, - sym_argument_list, - [54497] = 2, + ACTIONS(2624), 1, + sym_identifier, + STATE(867), 1, + sym_qualified_type, + [54586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 2, + ACTIONS(1929), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [54505] = 3, + sym_identifier, + [54594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1104), 1, - anon_sym_LPAREN, - STATE(447), 1, - sym_argument_list, - [54515] = 2, + ACTIONS(2626), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 2, + ACTIONS(1922), 2, anon_sym_SEMI, anon_sym_LBRACE, - [54523] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(854), 1, - anon_sym_SEMI, - [54533] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(730), 1, - anon_sym_LF, - ACTIONS(732), 1, - anon_sym_SEMI, - [54543] = 3, + [54610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - STATE(670), 1, + STATE(666), 1, sym_parameter_list, - [54553] = 2, + [54620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 2, + ACTIONS(2007), 2, anon_sym_SEMI, anon_sym_LBRACE, - [54561] = 2, + [54628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 2, + ACTIONS(2628), 2, anon_sym_RPAREN, - sym_identifier, - [54569] = 2, - ACTIONS(3), 1, + anon_sym_COMMA, + [54636] = 3, + ACTIONS(286), 1, sym_comment, - ACTIONS(2006), 2, + ACTIONS(2630), 1, + anon_sym_LF, + ACTIONS(2632), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [54577] = 3, + [54646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1947), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(500), 1, sym_literal_value, - [54587] = 3, + [54656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_literal_value, - [54597] = 3, - ACTIONS(286), 1, + ACTIONS(2634), 1, + anon_sym_LPAREN, + STATE(330), 1, + sym_argument_list, + [54666] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LF, - ACTIONS(2610), 1, - anon_sym_SEMI, - [54607] = 3, + ACTIONS(2636), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_field_declaration_list, + [54676] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(685), 1, + ACTIONS(2638), 1, anon_sym_LF, - ACTIONS(2612), 1, + ACTIONS(2640), 1, anon_sym_SEMI, - [54617] = 3, + [54686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - STATE(669), 1, + STATE(667), 1, sym_parameter_list, - [54627] = 3, + [54696] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(782), 1, + ACTIONS(2642), 1, anon_sym_LF, - ACTIONS(784), 1, - anon_sym_SEMI, - [54637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 2, + ACTIONS(2644), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [54645] = 2, + [54706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 2, - sym_raw_string_literal, - anon_sym_DQUOTE, - [54653] = 3, + ACTIONS(2646), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 1, + ACTIONS(2023), 1, anon_sym_LBRACE, - STATE(790), 1, - sym_field_declaration_list, - [54663] = 3, + STATE(335), 1, + sym_literal_value, + [54724] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(896), 1, + anon_sym_LF, + ACTIONS(2648), 1, + anon_sym_SEMI, + [54734] = 3, + ACTIONS(286), 1, + sym_comment, + ACTIONS(905), 1, + anon_sym_LF, + ACTIONS(907), 1, + anon_sym_SEMI, + [54744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(923), 1, anon_sym_LPAREN, - STATE(377), 1, + STATE(372), 1, sym_argument_list, - [54673] = 3, + [54754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN, - [54683] = 3, + ACTIONS(1965), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [54762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(2612), 1, + sym_identifier, + ACTIONS(2650), 1, anon_sym_LPAREN, - STATE(581), 1, - sym_parameter_list, - [54693] = 3, + [54772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - STATE(27), 1, - sym_parameter_list, - [54703] = 3, + STATE(437), 1, + sym_argument_list, + [54782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2622), 1, - anon_sym_LPAREN, - [54713] = 3, + ACTIONS(2541), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, - anon_sym_LPAREN, - ACTIONS(2624), 1, - anon_sym_RPAREN, - [54723] = 3, + ACTIONS(2652), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_field_declaration_list, + [54800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1887), 1, anon_sym_LPAREN, - STATE(663), 1, + STATE(29), 1, sym_parameter_list, - [54733] = 3, + [54810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym_parameter_list, - [54743] = 3, + ACTIONS(1200), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_literal_value, + [54820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2654), 1, anon_sym_LPAREN, - [54753] = 3, - ACTIONS(286), 1, - sym_comment, - ACTIONS(2630), 1, - anon_sym_LF, - ACTIONS(2632), 1, - anon_sym_SEMI, - [54763] = 3, + [54830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(502), 1, - sym_argument_list, - [54773] = 3, + ACTIONS(2656), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54838] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2594), 1, sym_identifier, - ACTIONS(2636), 1, + ACTIONS(2658), 1, anon_sym_LPAREN, - [54783] = 3, + [54848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - STATE(623), 1, + STATE(659), 1, sym_parameter_list, - [54793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2152), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_literal_value, - [54803] = 3, + [54858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 1, + ACTIONS(330), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(459), 1, sym_literal_value, - [54813] = 3, + [54868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(2660), 1, + sym_identifier, + ACTIONS(2662), 1, anon_sym_LPAREN, - STATE(659), 1, - sym_parameter_list, - [54823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 1, - anon_sym_LBRACE, - STATE(254), 1, - sym_field_declaration_list, - [54833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2640), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54841] = 3, + [54878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_block, - [54851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2642), 1, - anon_sym_LPAREN, - [54861] = 3, + ACTIONS(2664), 2, + sym_raw_string_literal, + anon_sym_DQUOTE, + [54886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, - sym_identifier, - ACTIONS(2646), 1, + ACTIONS(1206), 1, anon_sym_LPAREN, - [54871] = 3, + STATE(551), 1, + sym_argument_list, + [54896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2648), 1, - anon_sym_LPAREN, - [54881] = 3, + ACTIONS(1347), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1887), 1, anon_sym_LPAREN, - STATE(571), 1, - sym_argument_list, - [54891] = 3, + STATE(37), 1, + sym_parameter_list, + [54914] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(2666), 1, anon_sym_LF, - ACTIONS(2652), 1, + ACTIONS(2668), 1, anon_sym_SEMI, - [54901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54909] = 2, + [54924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 2, + ACTIONS(2392), 2, anon_sym_RPAREN, anon_sym_COMMA, - [54917] = 2, + [54932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(2243), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [54925] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2656), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [54933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2658), 1, sym_identifier, - STATE(878), 1, - sym_qualified_type, - [54943] = 3, + [54940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, - sym_identifier, - ACTIONS(2662), 1, + ACTIONS(1312), 1, anon_sym_LPAREN, - [54953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2235), 2, - anon_sym_RPAREN, - sym_identifier, - [54961] = 2, + STATE(547), 1, + sym_parameter_list, + [54950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54969] = 3, + ACTIONS(2082), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_literal_value, + [54960] = 3, ACTIONS(286), 1, sym_comment, - ACTIONS(2664), 1, + ACTIONS(819), 1, anon_sym_LF, - ACTIONS(2666), 1, + ACTIONS(821), 1, anon_sym_SEMI, - [54979] = 2, + [54970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 2, + ACTIONS(2291), 1, + anon_sym_LPAREN, + ACTIONS(2670), 1, anon_sym_RPAREN, - sym_identifier, - [54987] = 3, + [54980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2668), 1, - anon_sym_LPAREN, - STATE(316), 1, - sym_argument_list, - [54997] = 2, + ACTIONS(31), 1, + anon_sym_LBRACE, + STATE(882), 1, + sym_block, + [54990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, - sym_identifier, - [55004] = 2, + ACTIONS(741), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [54998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2672), 1, - sym_identifier, - [55011] = 2, + anon_sym_LBRACE, + [55013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2551), 1, anon_sym_RPAREN, - [55018] = 2, + [55020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2674), 1, + anon_sym_LBRACE, + [55027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2676), 1, - anon_sym_RPAREN, - [55025] = 2, + sym_identifier, + [55034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2678), 1, - anon_sym_EQ, - [55032] = 2, + anon_sym_RPAREN, + [55041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2680), 1, anon_sym_RPAREN, - [55039] = 2, + [55048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2682), 1, anon_sym_RPAREN, - [55046] = 2, + [55055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2684), 1, - sym_identifier, - [55053] = 2, + anon_sym_LBRACE, + [55062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2686), 1, anon_sym_RPAREN, - [55060] = 2, + [55069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2688), 1, - anon_sym_RPAREN, - [55067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, anon_sym_RBRACE, - [55074] = 2, + [55076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2690), 1, - anon_sym_COLON_EQ, - [55081] = 2, + anon_sym_SEMI, + [55083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2692), 1, - anon_sym_LBRACE, - [55088] = 2, + anon_sym_RPAREN, + [55090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2694), 1, - anon_sym_SEMI, - [55095] = 2, + anon_sym_LBRACE, + [55097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2696), 1, - anon_sym_COLON, - [55102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2188), 1, - anon_sym_RBRACE, - [55109] = 2, + anon_sym_LBRACE, + [55104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2698), 1, - anon_sym_SEMI, - [55116] = 2, + anon_sym_LBRACE, + [55111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2700), 1, anon_sym_COLON, - [55123] = 2, + [55118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2702), 1, - anon_sym_LBRACE, - [55130] = 2, + sym_identifier, + [55125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2704), 1, - anon_sym_RBRACE, - [55137] = 2, + anon_sym_SEMI, + [55132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2706), 1, sym_identifier, - [55144] = 2, + [55139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2708), 1, - anon_sym_SEMI, - [55151] = 2, + anon_sym_RBRACE, + [55146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2710), 1, - sym_identifier, - [55158] = 2, + anon_sym_EQ, + [55153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2255), 1, + anon_sym_RBRACE, + [55160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(2329), 1, anon_sym_RBRACE, - [55165] = 2, + [55167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2712), 1, - anon_sym_LBRACE, - [55172] = 2, + anon_sym_RBRACE, + [55174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2714), 1, - anon_sym_RBRACK, - [55179] = 2, + anon_sym_RBRACE, + [55181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2716), 1, - anon_sym_LBRACE, - [55186] = 2, + anon_sym_RPAREN, + [55188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2718), 1, - anon_sym_RBRACE, - [55193] = 2, + anon_sym_LBRACE, + [55195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, - anon_sym_LBRACE, - [55200] = 2, + anon_sym_RPAREN, + [55202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, - anon_sym_chan, - [55207] = 2, + anon_sym_RPAREN, + [55209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, - anon_sym_LBRACE, - [55214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - anon_sym_RPAREN, - [55221] = 2, + anon_sym_COLON, + [55216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, - anon_sym_RBRACE, - [55228] = 2, + anon_sym_RBRACK, + [55223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2728), 1, - anon_sym_chan, - [55235] = 2, + anon_sym_RPAREN, + [55230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2730), 1, - anon_sym_RPAREN, - [55242] = 2, + anon_sym_RBRACE, + [55237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2732), 1, - anon_sym_LBRACE, - [55249] = 2, + anon_sym_RPAREN, + [55244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2524), 1, + anon_sym_RPAREN, + [55251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2734), 1, anon_sym_RPAREN, - [55256] = 2, + [55258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2736), 1, - anon_sym_EQ, - [55263] = 2, + anon_sym_SEMI, + [55265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2738), 1, - anon_sym_chan, - [55270] = 2, + sym_identifier, + [55272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2740), 1, - anon_sym_RBRACK, - [55277] = 2, + anon_sym_chan, + [55279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2742), 1, anon_sym_RBRACK, - [55284] = 2, + [55286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2744), 1, - anon_sym_LBRACE, - [55291] = 2, + anon_sym_RPAREN, + [55293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2746), 1, - anon_sym_LBRACE, - [55298] = 2, + sym_identifier, + [55300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, - anon_sym_RPAREN, - [55305] = 2, + anon_sym_chan, + [55307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, - sym_identifier, - [55312] = 2, + anon_sym_chan, + [55314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, - anon_sym_LBRACE, - [55319] = 2, + anon_sym_LPAREN, + [55321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, - anon_sym_RBRACE, - [55326] = 2, + anon_sym_LBRACE, + [55328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2756), 1, - anon_sym_RPAREN, - [55333] = 2, + sym_identifier, + [55335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, - anon_sym_LBRACE, - [55340] = 2, + ACTIONS(2231), 1, + anon_sym_RBRACE, + [55342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, - anon_sym_RPAREN, - [55347] = 2, + ACTIONS(2758), 1, + anon_sym_RBRACE, + [55349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(2358), 1, anon_sym_RBRACE, - [55354] = 2, + [55356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2760), 1, - anon_sym_LBRACE, - [55361] = 2, + anon_sym_RBRACK, + [55363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2762), 1, - sym_identifier, - [55368] = 2, + anon_sym_RPAREN, + [55370] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2764), 1, - anon_sym_RBRACK, - [55375] = 2, + anon_sym_LBRACE, + [55377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2766), 1, - anon_sym_RPAREN, - [55382] = 2, + ts_builtin_sym_end, + [55384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2768), 1, anon_sym_RPAREN, - [55389] = 2, + [55391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2770), 1, - anon_sym_RPAREN, - [55396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2245), 1, - anon_sym_RBRACE, - [55403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - anon_sym_RPAREN, - [55410] = 2, + anon_sym_LBRACE, + [55398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2772), 1, - anon_sym_COLON, - [55417] = 2, + anon_sym_LBRACE, + [55405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2774), 1, - anon_sym_chan, - [55424] = 2, + anon_sym_COLON, + [55412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2776), 1, - anon_sym_LPAREN, - [55431] = 2, + sym_identifier, + [55419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2778), 1, - sym_identifier, - [55438] = 2, + anon_sym_LBRACE, + [55426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2780), 1, - ts_builtin_sym_end, - [55445] = 2, + anon_sym_COLON_EQ, + [55433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2437), 1, anon_sym_RPAREN, - [55452] = 2, + [55440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + sym_identifier, + [55447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2784), 1, anon_sym_RPAREN, - [55459] = 2, + [55454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_RPAREN, + [55461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2786), 1, - anon_sym_LBRACE, - [55466] = 2, + anon_sym_chan, + [55468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2788), 1, - sym_identifier, - [55473] = 2, + anon_sym_LBRACK, + [55475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2790), 1, - anon_sym_RPAREN, - [55480] = 2, + anon_sym_LBRACE, + [55482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2792), 1, anon_sym_RPAREN, - [55487] = 2, + [55489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(2794), 1, + anon_sym_RPAREN, + [55496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 1, anon_sym_RBRACE, - [55494] = 2, + [55503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_LBRACK, - [55501] = 2, + ACTIONS(2188), 1, + anon_sym_RBRACE, + [55510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2796), 1, anon_sym_RPAREN, - [55508] = 2, + [55517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2798), 1, anon_sym_LBRACE, - [55515] = 2, + [55524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2800), 1, - anon_sym_RBRACE, - [55522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2624), 1, - anon_sym_RPAREN, - [55529] = 2, + anon_sym_RBRACK, + [55531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2802), 1, - anon_sym_RBRACE, - [55536] = 2, + sym_identifier, + [55538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2804), 1, - anon_sym_RBRACE, - [55543] = 2, + anon_sym_EQ, + [55545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2806), 1, - anon_sym_RBRACK, - [55550] = 2, + anon_sym_RBRACE, + [55552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2808), 1, - anon_sym_LBRACK, - [55557] = 2, + sym_identifier, + [55559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, - anon_sym_LPAREN, - [55564] = 2, + ACTIONS(2810), 1, + anon_sym_LBRACK, + [55566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, - sym_identifier, - [55571] = 2, + ACTIONS(2291), 1, + anon_sym_LPAREN, + [55573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2812), 1, - anon_sym_LBRACK, - [55578] = 2, + anon_sym_RBRACK, + [55580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2814), 1, - anon_sym_LPAREN, - [55585] = 2, + anon_sym_LBRACK, + [55587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2816), 1, anon_sym_LPAREN, - [55592] = 2, + [55594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2818), 1, anon_sym_LPAREN, - [55599] = 2, + [55601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2820), 1, anon_sym_LPAREN, - [55606] = 2, + [55608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2822), 1, + anon_sym_LPAREN, + [55615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 1, anon_sym_LBRACK, }; @@ -54158,17 +54167,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(25)] = 354, [SMALL_STATE(26)] = 471, [SMALL_STATE(27)] = 588, - [SMALL_STATE(28)] = 686, - [SMALL_STATE(29)] = 784, + [SMALL_STATE(28)] = 702, + [SMALL_STATE(29)] = 800, [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(32)] = 1107, + [SMALL_STATE(33)] = 1226, + [SMALL_STATE(34)] = 1345, + [SMALL_STATE(35)] = 1464, + [SMALL_STATE(36)] = 1583, + [SMALL_STATE(37)] = 1702, + [SMALL_STATE(38)] = 1795, [SMALL_STATE(39)] = 1914, [SMALL_STATE(40)] = 2030, [SMALL_STATE(41)] = 2146, @@ -54368,73 +54377,73 @@ static const uint32_t ts_small_parse_table_map[] = { [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(238)] = 22442, + [SMALL_STATE(239)] = 22502, + [SMALL_STATE(240)] = 22572, + [SMALL_STATE(241)] = 22632, [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(248)] = 23037, + [SMALL_STATE(249)] = 23092, + [SMALL_STATE(250)] = 23147, + [SMALL_STATE(251)] = 23202, + [SMALL_STATE(252)] = 23257, + [SMALL_STATE(253)] = 23312, + [SMALL_STATE(254)] = 23367, + [SMALL_STATE(255)] = 23422, + [SMALL_STATE(256)] = 23477, + [SMALL_STATE(257)] = 23532, + [SMALL_STATE(258)] = 23587, + [SMALL_STATE(259)] = 23642, + [SMALL_STATE(260)] = 23697, + [SMALL_STATE(261)] = 23752, + [SMALL_STATE(262)] = 23807, + [SMALL_STATE(263)] = 23862, + [SMALL_STATE(264)] = 23929, + [SMALL_STATE(265)] = 24016, + [SMALL_STATE(266)] = 24071, + [SMALL_STATE(267)] = 24126, + [SMALL_STATE(268)] = 24181, + [SMALL_STATE(269)] = 24236, + [SMALL_STATE(270)] = 24291, + [SMALL_STATE(271)] = 24346, + [SMALL_STATE(272)] = 24401, + [SMALL_STATE(273)] = 24456, + [SMALL_STATE(274)] = 24511, + [SMALL_STATE(275)] = 24566, + [SMALL_STATE(276)] = 24621, + [SMALL_STATE(277)] = 24676, + [SMALL_STATE(278)] = 24731, + [SMALL_STATE(279)] = 24786, + [SMALL_STATE(280)] = 24841, + [SMALL_STATE(281)] = 24896, + [SMALL_STATE(282)] = 24951, + [SMALL_STATE(283)] = 25006, + [SMALL_STATE(284)] = 25061, + [SMALL_STATE(285)] = 25116, + [SMALL_STATE(286)] = 25171, + [SMALL_STATE(287)] = 25226, + [SMALL_STATE(288)] = 25281, + [SMALL_STATE(289)] = 25336, + [SMALL_STATE(290)] = 25391, + [SMALL_STATE(291)] = 25486, [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(296)] = 25783, + [SMALL_STATE(297)] = 25837, + [SMALL_STATE(298)] = 25909, + [SMALL_STATE(299)] = 25979, + [SMALL_STATE(300)] = 26047, [SMALL_STATE(301)] = 26113, - [SMALL_STATE(302)] = 26166, - [SMALL_STATE(303)] = 26257, - [SMALL_STATE(304)] = 26314, + [SMALL_STATE(302)] = 26170, + [SMALL_STATE(303)] = 26223, + [SMALL_STATE(304)] = 26276, [SMALL_STATE(305)] = 26367, [SMALL_STATE(306)] = 26458, [SMALL_STATE(307)] = 26510, @@ -54446,15 +54455,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(316)] = 27014, + [SMALL_STATE(317)] = 27066, + [SMALL_STATE(318)] = 27118, + [SMALL_STATE(319)] = 27170, + [SMALL_STATE(320)] = 27222, + [SMALL_STATE(321)] = 27274, + [SMALL_STATE(322)] = 27326, + [SMALL_STATE(323)] = 27378, + [SMALL_STATE(324)] = 27430, [SMALL_STATE(325)] = 27482, [SMALL_STATE(326)] = 27534, [SMALL_STATE(327)] = 27586, @@ -54471,12 +54480,12 @@ static const uint32_t ts_small_parse_table_map[] = { [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(341)] = 28332, + [SMALL_STATE(342)] = 28393, + [SMALL_STATE(343)] = 28456, + [SMALL_STATE(344)] = 28521, + [SMALL_STATE(345)] = 28590, + [SMALL_STATE(346)] = 28675, [SMALL_STATE(347)] = 28746, [SMALL_STATE(348)] = 28800, [SMALL_STATE(349)] = 28849, @@ -54514,12 +54523,12 @@ static const uint32_t ts_small_parse_table_map[] = { [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(384)] = 30583, + [SMALL_STATE(385)] = 30643, + [SMALL_STATE(386)] = 30699, + [SMALL_STATE(387)] = 30763, + [SMALL_STATE(388)] = 30829, + [SMALL_STATE(389)] = 30897, [SMALL_STATE(390)] = 30953, [SMALL_STATE(391)] = 31002, [SMALL_STATE(392)] = 31046, @@ -54594,213 +54603,213 @@ static const uint32_t ts_small_parse_table_map[] = { [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(464)] = 34123, + [SMALL_STATE(465)] = 34176, + [SMALL_STATE(466)] = 34233, + [SMALL_STATE(467)] = 34294, + [SMALL_STATE(468)] = 34357, + [SMALL_STATE(469)] = 34434, [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(472)] = 34587, + [SMALL_STATE(473)] = 34657, + [SMALL_STATE(474)] = 34727, + [SMALL_STATE(475)] = 34779, [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(477)] = 34877, + [SMALL_STATE(478)] = 34941, + [SMALL_STATE(479)] = 35013, + [SMALL_STATE(480)] = 35069, + [SMALL_STATE(481)] = 35127, [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(484)] = 35275, + [SMALL_STATE(485)] = 35338, + [SMALL_STATE(486)] = 35385, + [SMALL_STATE(487)] = 35442, + [SMALL_STATE(488)] = 35499, + [SMALL_STATE(489)] = 35540, + [SMALL_STATE(490)] = 35601, + [SMALL_STATE(491)] = 35656, + [SMALL_STATE(492)] = 35715, [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(494)] = 35838, + [SMALL_STATE(495)] = 35904, + [SMALL_STATE(496)] = 35940, + [SMALL_STATE(497)] = 35976, + [SMALL_STATE(498)] = 36012, + [SMALL_STATE(499)] = 36048, + [SMALL_STATE(500)] = 36084, + [SMALL_STATE(501)] = 36120, + [SMALL_STATE(502)] = 36156, + [SMALL_STATE(503)] = 36192, + [SMALL_STATE(504)] = 36228, + [SMALL_STATE(505)] = 36264, + [SMALL_STATE(506)] = 36300, + [SMALL_STATE(507)] = 36336, + [SMALL_STATE(508)] = 36372, + [SMALL_STATE(509)] = 36408, + [SMALL_STATE(510)] = 36474, + [SMALL_STATE(511)] = 36510, + [SMALL_STATE(512)] = 36546, + [SMALL_STATE(513)] = 36582, + [SMALL_STATE(514)] = 36648, + [SMALL_STATE(515)] = 36684, + [SMALL_STATE(516)] = 36720, + [SMALL_STATE(517)] = 36756, + [SMALL_STATE(518)] = 36792, + [SMALL_STATE(519)] = 36828, + [SMALL_STATE(520)] = 36864, + [SMALL_STATE(521)] = 36900, + [SMALL_STATE(522)] = 36970, + [SMALL_STATE(523)] = 37006, + [SMALL_STATE(524)] = 37054, + [SMALL_STATE(525)] = 37094, + [SMALL_STATE(526)] = 37130, + [SMALL_STATE(527)] = 37166, + [SMALL_STATE(528)] = 37202, + [SMALL_STATE(529)] = 37238, + [SMALL_STATE(530)] = 37274, + [SMALL_STATE(531)] = 37310, + [SMALL_STATE(532)] = 37376, + [SMALL_STATE(533)] = 37426, + [SMALL_STATE(534)] = 37462, + [SMALL_STATE(535)] = 37498, + [SMALL_STATE(536)] = 37558, + [SMALL_STATE(537)] = 37594, + [SMALL_STATE(538)] = 37660, + [SMALL_STATE(539)] = 37724, [SMALL_STATE(540)] = 37790, - [SMALL_STATE(541)] = 37855, + [SMALL_STATE(541)] = 37825, [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(548)] = 38128, + [SMALL_STATE(549)] = 38163, + [SMALL_STATE(550)] = 38198, + [SMALL_STATE(551)] = 38233, + [SMALL_STATE(552)] = 38268, + [SMALL_STATE(553)] = 38335, + [SMALL_STATE(554)] = 38380, + [SMALL_STATE(555)] = 38441, + [SMALL_STATE(556)] = 38476, + [SMALL_STATE(557)] = 38511, + [SMALL_STATE(558)] = 38570, + [SMALL_STATE(559)] = 38605, + [SMALL_STATE(560)] = 38640, + [SMALL_STATE(561)] = 38689, + [SMALL_STATE(562)] = 38742, + [SMALL_STATE(563)] = 38777, + [SMALL_STATE(564)] = 38812, + [SMALL_STATE(565)] = 38875, + [SMALL_STATE(566)] = 38910, + [SMALL_STATE(567)] = 38945, + [SMALL_STATE(568)] = 39000, + [SMALL_STATE(569)] = 39035, + [SMALL_STATE(570)] = 39070, + [SMALL_STATE(571)] = 39127, + [SMALL_STATE(572)] = 39162, + [SMALL_STATE(573)] = 39197, + [SMALL_STATE(574)] = 39232, + [SMALL_STATE(575)] = 39267, + [SMALL_STATE(576)] = 39302, + [SMALL_STATE(577)] = 39337, + [SMALL_STATE(578)] = 39402, + [SMALL_STATE(579)] = 39437, + [SMALL_STATE(580)] = 39472, + [SMALL_STATE(581)] = 39507, + [SMALL_STATE(582)] = 39564, + [SMALL_STATE(583)] = 39599, + [SMALL_STATE(584)] = 39654, + [SMALL_STATE(585)] = 39689, + [SMALL_STATE(586)] = 39724, + [SMALL_STATE(587)] = 39759, + [SMALL_STATE(588)] = 39812, + [SMALL_STATE(589)] = 39877, + [SMALL_STATE(590)] = 39940, + [SMALL_STATE(591)] = 39975, [SMALL_STATE(592)] = 40024, [SMALL_STATE(593)] = 40084, - [SMALL_STATE(594)] = 40146, - [SMALL_STATE(595)] = 40208, - [SMALL_STATE(596)] = 40268, + [SMALL_STATE(594)] = 40144, + [SMALL_STATE(595)] = 40204, + [SMALL_STATE(596)] = 40266, [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(599)] = 40444, + [SMALL_STATE(600)] = 40504, + [SMALL_STATE(601)] = 40566, + [SMALL_STATE(602)] = 40624, + [SMALL_STATE(603)] = 40684, + [SMALL_STATE(604)] = 40744, + [SMALL_STATE(605)] = 40806, + [SMALL_STATE(606)] = 40866, + [SMALL_STATE(607)] = 40926, + [SMALL_STATE(608)] = 40984, + [SMALL_STATE(609)] = 41044, + [SMALL_STATE(610)] = 41104, + [SMALL_STATE(611)] = 41164, + [SMALL_STATE(612)] = 41224, + [SMALL_STATE(613)] = 41284, + [SMALL_STATE(614)] = 41344, + [SMALL_STATE(615)] = 41404, + [SMALL_STATE(616)] = 41466, + [SMALL_STATE(617)] = 41526, + [SMALL_STATE(618)] = 41584, + [SMALL_STATE(619)] = 41644, + [SMALL_STATE(620)] = 41704, + [SMALL_STATE(621)] = 41764, + [SMALL_STATE(622)] = 41826, + [SMALL_STATE(623)] = 41886, + [SMALL_STATE(624)] = 41946, [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(629)] = 42242, + [SMALL_STATE(630)] = 42299, + [SMALL_STATE(631)] = 42356, + [SMALL_STATE(632)] = 42413, + [SMALL_STATE(633)] = 42470, + [SMALL_STATE(634)] = 42527, + [SMALL_STATE(635)] = 42584, + [SMALL_STATE(636)] = 42641, [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(639)] = 42814, + [SMALL_STATE(640)] = 42871, + [SMALL_STATE(641)] = 42928, + [SMALL_STATE(642)] = 42985, + [SMALL_STATE(643)] = 43042, + [SMALL_STATE(644)] = 43099, + [SMALL_STATE(645)] = 43156, + [SMALL_STATE(646)] = 43213, + [SMALL_STATE(647)] = 43270, + [SMALL_STATE(648)] = 43327, + [SMALL_STATE(649)] = 43388, + [SMALL_STATE(650)] = 43449, + [SMALL_STATE(651)] = 43506, + [SMALL_STATE(652)] = 43563, + [SMALL_STATE(653)] = 43620, + [SMALL_STATE(654)] = 43677, + [SMALL_STATE(655)] = 43734, [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(661)] = 44080, + [SMALL_STATE(662)] = 44138, + [SMALL_STATE(663)] = 44192, + [SMALL_STATE(664)] = 44250, + [SMALL_STATE(665)] = 44308, + [SMALL_STATE(666)] = 44368, + [SMALL_STATE(667)] = 44426, + [SMALL_STATE(668)] = 44484, + [SMALL_STATE(669)] = 44542, + [SMALL_STATE(670)] = 44600, [SMALL_STATE(671)] = 44660, [SMALL_STATE(672)] = 44715, [SMALL_STATE(673)] = 44770, @@ -54875,9 +54884,9 @@ static const uint32_t ts_small_parse_table_map[] = { [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(745)] = 48522, + [SMALL_STATE(746)] = 48548, + [SMALL_STATE(747)] = 48574, [SMALL_STATE(748)] = 48600, [SMALL_STATE(749)] = 48626, [SMALL_STATE(750)] = 48651, @@ -54896,54 +54905,54 @@ static const uint32_t ts_small_parse_table_map[] = { [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(766)] = 49162, + [SMALL_STATE(767)] = 49197, + [SMALL_STATE(768)] = 49222, + [SMALL_STATE(769)] = 49243, + [SMALL_STATE(770)] = 49264, + [SMALL_STATE(771)] = 49285, [SMALL_STATE(772)] = 49306, - [SMALL_STATE(773)] = 49326, - [SMALL_STATE(774)] = 49350, + [SMALL_STATE(773)] = 49330, + [SMALL_STATE(774)] = 49354, [SMALL_STATE(775)] = 49374, - [SMALL_STATE(776)] = 49399, - [SMALL_STATE(777)] = 49418, + [SMALL_STATE(776)] = 49393, + [SMALL_STATE(777)] = 49412, [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(779)] = 49471, + [SMALL_STATE(780)] = 49505, + [SMALL_STATE(781)] = 49537, + [SMALL_STATE(782)] = 49555, + [SMALL_STATE(783)] = 49577, + [SMALL_STATE(784)] = 49599, + [SMALL_STATE(785)] = 49633, [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(790)] = 49720, + [SMALL_STATE(791)] = 49737, + [SMALL_STATE(792)] = 49754, [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(795)] = 49806, + [SMALL_STATE(796)] = 49822, + [SMALL_STATE(797)] = 49838, + [SMALL_STATE(798)] = 49854, + [SMALL_STATE(799)] = 49870, + [SMALL_STATE(800)] = 49886, + [SMALL_STATE(801)] = 49902, + [SMALL_STATE(802)] = 49918, + [SMALL_STATE(803)] = 49934, + [SMALL_STATE(804)] = 49948, + [SMALL_STATE(805)] = 49964, + [SMALL_STATE(806)] = 49980, + [SMALL_STATE(807)] = 49996, + [SMALL_STATE(808)] = 50012, + [SMALL_STATE(809)] = 50028, + [SMALL_STATE(810)] = 50044, + [SMALL_STATE(811)] = 50060, + [SMALL_STATE(812)] = 50076, + [SMALL_STATE(813)] = 50092, [SMALL_STATE(814)] = 50114, [SMALL_STATE(815)] = 50130, [SMALL_STATE(816)] = 50146, @@ -54952,20 +54961,20 @@ static const uint32_t ts_small_parse_table_map[] = { [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(822)] = 50234, + [SMALL_STATE(823)] = 50247, + [SMALL_STATE(824)] = 50260, + [SMALL_STATE(825)] = 50273, + [SMALL_STATE(826)] = 50286, + [SMALL_STATE(827)] = 50299, + [SMALL_STATE(828)] = 50312, + [SMALL_STATE(829)] = 50325, + [SMALL_STATE(830)] = 50338, + [SMALL_STATE(831)] = 50361, + [SMALL_STATE(832)] = 50380, + [SMALL_STATE(833)] = 50393, + [SMALL_STATE(834)] = 50406, + [SMALL_STATE(835)] = 50419, [SMALL_STATE(836)] = 50438, [SMALL_STATE(837)] = 50451, [SMALL_STATE(838)] = 50464, @@ -54976,429 +54985,430 @@ static const uint32_t ts_small_parse_table_map[] = { [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(846)] = 50575, + [SMALL_STATE(847)] = 50595, + [SMALL_STATE(848)] = 50613, + [SMALL_STATE(849)] = 50631, + [SMALL_STATE(850)] = 50645, + [SMALL_STATE(851)] = 50663, + [SMALL_STATE(852)] = 50681, + [SMALL_STATE(853)] = 50699, + [SMALL_STATE(854)] = 50717, + [SMALL_STATE(855)] = 50735, + [SMALL_STATE(856)] = 50753, + [SMALL_STATE(857)] = 50769, + [SMALL_STATE(858)] = 50787, + [SMALL_STATE(859)] = 50805, + [SMALL_STATE(860)] = 50823, + [SMALL_STATE(861)] = 50839, + [SMALL_STATE(862)] = 50855, + [SMALL_STATE(863)] = 50871, + [SMALL_STATE(864)] = 50889, + [SMALL_STATE(865)] = 50907, + [SMALL_STATE(866)] = 50925, + [SMALL_STATE(867)] = 50943, + [SMALL_STATE(868)] = 50963, + [SMALL_STATE(869)] = 50981, + [SMALL_STATE(870)] = 50997, + [SMALL_STATE(871)] = 51015, + [SMALL_STATE(872)] = 51031, + [SMALL_STATE(873)] = 51049, + [SMALL_STATE(874)] = 51065, + [SMALL_STATE(875)] = 51085, + [SMALL_STATE(876)] = 51103, + [SMALL_STATE(877)] = 51125, + [SMALL_STATE(878)] = 51143, + [SMALL_STATE(879)] = 51163, [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(881)] = 51198, + [SMALL_STATE(882)] = 51215, + [SMALL_STATE(883)] = 51228, + [SMALL_STATE(884)] = 51241, + [SMALL_STATE(885)] = 51258, + [SMALL_STATE(886)] = 51271, + [SMALL_STATE(887)] = 51288, + [SMALL_STATE(888)] = 51305, + [SMALL_STATE(889)] = 51324, + [SMALL_STATE(890)] = 51337, + [SMALL_STATE(891)] = 51350, + [SMALL_STATE(892)] = 51363, + [SMALL_STATE(893)] = 51376, + [SMALL_STATE(894)] = 51389, + [SMALL_STATE(895)] = 51402, + [SMALL_STATE(896)] = 51415, + [SMALL_STATE(897)] = 51428, + [SMALL_STATE(898)] = 51441, + [SMALL_STATE(899)] = 51454, + [SMALL_STATE(900)] = 51471, + [SMALL_STATE(901)] = 51490, + [SMALL_STATE(902)] = 51503, + [SMALL_STATE(903)] = 51516, + [SMALL_STATE(904)] = 51529, + [SMALL_STATE(905)] = 51542, + [SMALL_STATE(906)] = 51555, + [SMALL_STATE(907)] = 51568, + [SMALL_STATE(908)] = 51581, + [SMALL_STATE(909)] = 51594, + [SMALL_STATE(910)] = 51613, + [SMALL_STATE(911)] = 51632, + [SMALL_STATE(912)] = 51645, [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(914)] = 51677, + [SMALL_STATE(915)] = 51690, + [SMALL_STATE(916)] = 51709, + [SMALL_STATE(917)] = 51726, + [SMALL_STATE(918)] = 51739, + [SMALL_STATE(919)] = 51758, + [SMALL_STATE(920)] = 51771, [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(922)] = 51805, + [SMALL_STATE(923)] = 51818, + [SMALL_STATE(924)] = 51835, + [SMALL_STATE(925)] = 51854, + [SMALL_STATE(926)] = 51867, + [SMALL_STATE(927)] = 51880, + [SMALL_STATE(928)] = 51899, + [SMALL_STATE(929)] = 51912, + [SMALL_STATE(930)] = 51925, + [SMALL_STATE(931)] = 51944, + [SMALL_STATE(932)] = 51957, + [SMALL_STATE(933)] = 51970, + [SMALL_STATE(934)] = 51987, + [SMALL_STATE(935)] = 52000, + [SMALL_STATE(936)] = 52013, + [SMALL_STATE(937)] = 52026, + [SMALL_STATE(938)] = 52045, + [SMALL_STATE(939)] = 52058, + [SMALL_STATE(940)] = 52071, + [SMALL_STATE(941)] = 52084, + [SMALL_STATE(942)] = 52097, + [SMALL_STATE(943)] = 52110, + [SMALL_STATE(944)] = 52123, + [SMALL_STATE(945)] = 52142, + [SMALL_STATE(946)] = 52155, + [SMALL_STATE(947)] = 52168, + [SMALL_STATE(948)] = 52181, [SMALL_STATE(949)] = 52194, - [SMALL_STATE(950)] = 52207, - [SMALL_STATE(951)] = 52220, + [SMALL_STATE(950)] = 52213, + [SMALL_STATE(951)] = 52226, [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(956)] = 52293, + [SMALL_STATE(957)] = 52307, + [SMALL_STATE(958)] = 52323, + [SMALL_STATE(959)] = 52339, + [SMALL_STATE(960)] = 52355, + [SMALL_STATE(961)] = 52371, + [SMALL_STATE(962)] = 52387, + [SMALL_STATE(963)] = 52403, [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(968)] = 52477, + [SMALL_STATE(969)] = 52491, + [SMALL_STATE(970)] = 52505, + [SMALL_STATE(971)] = 52521, + [SMALL_STATE(972)] = 52535, + [SMALL_STATE(973)] = 52549, + [SMALL_STATE(974)] = 52563, + [SMALL_STATE(975)] = 52579, + [SMALL_STATE(976)] = 52593, + [SMALL_STATE(977)] = 52609, + [SMALL_STATE(978)] = 52625, + [SMALL_STATE(979)] = 52639, + [SMALL_STATE(980)] = 52651, + [SMALL_STATE(981)] = 52667, + [SMALL_STATE(982)] = 52683, + [SMALL_STATE(983)] = 52695, + [SMALL_STATE(984)] = 52707, + [SMALL_STATE(985)] = 52723, + [SMALL_STATE(986)] = 52735, + [SMALL_STATE(987)] = 52751, + [SMALL_STATE(988)] = 52767, + [SMALL_STATE(989)] = 52783, + [SMALL_STATE(990)] = 52799, + [SMALL_STATE(991)] = 52815, + [SMALL_STATE(992)] = 52829, + [SMALL_STATE(993)] = 52843, + [SMALL_STATE(994)] = 52855, + [SMALL_STATE(995)] = 52871, + [SMALL_STATE(996)] = 52887, + [SMALL_STATE(997)] = 52903, + [SMALL_STATE(998)] = 52917, + [SMALL_STATE(999)] = 52931, + [SMALL_STATE(1000)] = 52945, + [SMALL_STATE(1001)] = 52961, + [SMALL_STATE(1002)] = 52975, + [SMALL_STATE(1003)] = 52991, + [SMALL_STATE(1004)] = 53007, + [SMALL_STATE(1005)] = 53019, + [SMALL_STATE(1006)] = 53035, [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(1011)] = 53103, + [SMALL_STATE(1012)] = 53116, + [SMALL_STATE(1013)] = 53129, [SMALL_STATE(1014)] = 53140, [SMALL_STATE(1015)] = 53153, - [SMALL_STATE(1016)] = 53162, + [SMALL_STATE(1016)] = 53164, [SMALL_STATE(1017)] = 53175, [SMALL_STATE(1018)] = 53188, - [SMALL_STATE(1019)] = 53197, - [SMALL_STATE(1020)] = 53210, - [SMALL_STATE(1021)] = 53223, + [SMALL_STATE(1019)] = 53201, + [SMALL_STATE(1020)] = 53212, + [SMALL_STATE(1021)] = 53225, [SMALL_STATE(1022)] = 53236, [SMALL_STATE(1023)] = 53245, [SMALL_STATE(1024)] = 53254, [SMALL_STATE(1025)] = 53263, - [SMALL_STATE(1026)] = 53272, + [SMALL_STATE(1026)] = 53274, [SMALL_STATE(1027)] = 53285, [SMALL_STATE(1028)] = 53298, - [SMALL_STATE(1029)] = 53309, - [SMALL_STATE(1030)] = 53322, - [SMALL_STATE(1031)] = 53331, + [SMALL_STATE(1029)] = 53311, + [SMALL_STATE(1030)] = 53324, + [SMALL_STATE(1031)] = 53335, [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(1034)] = 53370, + [SMALL_STATE(1035)] = 53383, + [SMALL_STATE(1036)] = 53396, + [SMALL_STATE(1037)] = 53409, + [SMALL_STATE(1038)] = 53422, + [SMALL_STATE(1039)] = 53433, + [SMALL_STATE(1040)] = 53446, + [SMALL_STATE(1041)] = 53459, + [SMALL_STATE(1042)] = 53470, + [SMALL_STATE(1043)] = 53479, + [SMALL_STATE(1044)] = 53492, + [SMALL_STATE(1045)] = 53503, + [SMALL_STATE(1046)] = 53516, + [SMALL_STATE(1047)] = 53529, + [SMALL_STATE(1048)] = 53542, + [SMALL_STATE(1049)] = 53551, + [SMALL_STATE(1050)] = 53564, + [SMALL_STATE(1051)] = 53575, + [SMALL_STATE(1052)] = 53588, + [SMALL_STATE(1053)] = 53601, + [SMALL_STATE(1054)] = 53614, + [SMALL_STATE(1055)] = 53625, + [SMALL_STATE(1056)] = 53636, + [SMALL_STATE(1057)] = 53649, + [SMALL_STATE(1058)] = 53662, + [SMALL_STATE(1059)] = 53675, + [SMALL_STATE(1060)] = 53684, + [SMALL_STATE(1061)] = 53693, + [SMALL_STATE(1062)] = 53706, + [SMALL_STATE(1063)] = 53719, + [SMALL_STATE(1064)] = 53728, + [SMALL_STATE(1065)] = 53741, + [SMALL_STATE(1066)] = 53754, + [SMALL_STATE(1067)] = 53767, + [SMALL_STATE(1068)] = 53780, + [SMALL_STATE(1069)] = 53793, + [SMALL_STATE(1070)] = 53806, + [SMALL_STATE(1071)] = 53819, + [SMALL_STATE(1072)] = 53828, + [SMALL_STATE(1073)] = 53841, + [SMALL_STATE(1074)] = 53854, + [SMALL_STATE(1075)] = 53867, + [SMALL_STATE(1076)] = 53880, + [SMALL_STATE(1077)] = 53893, + [SMALL_STATE(1078)] = 53906, + [SMALL_STATE(1079)] = 53919, + [SMALL_STATE(1080)] = 53932, + [SMALL_STATE(1081)] = 53945, + [SMALL_STATE(1082)] = 53958, + [SMALL_STATE(1083)] = 53971, + [SMALL_STATE(1084)] = 53984, + [SMALL_STATE(1085)] = 53995, + [SMALL_STATE(1086)] = 54008, + [SMALL_STATE(1087)] = 54021, + [SMALL_STATE(1088)] = 54030, + [SMALL_STATE(1089)] = 54039, + [SMALL_STATE(1090)] = 54052, + [SMALL_STATE(1091)] = 54065, + [SMALL_STATE(1092)] = 54078, + [SMALL_STATE(1093)] = 54091, + [SMALL_STATE(1094)] = 54104, + [SMALL_STATE(1095)] = 54117, + [SMALL_STATE(1096)] = 54126, + [SMALL_STATE(1097)] = 54139, + [SMALL_STATE(1098)] = 54152, + [SMALL_STATE(1099)] = 54165, + [SMALL_STATE(1100)] = 54178, + [SMALL_STATE(1101)] = 54191, + [SMALL_STATE(1102)] = 54200, + [SMALL_STATE(1103)] = 54213, + [SMALL_STATE(1104)] = 54226, + [SMALL_STATE(1105)] = 54239, + [SMALL_STATE(1106)] = 54252, + [SMALL_STATE(1107)] = 54265, + [SMALL_STATE(1108)] = 54278, + [SMALL_STATE(1109)] = 54291, + [SMALL_STATE(1110)] = 54304, + [SMALL_STATE(1111)] = 54317, + [SMALL_STATE(1112)] = 54330, + [SMALL_STATE(1113)] = 54343, + [SMALL_STATE(1114)] = 54356, + [SMALL_STATE(1115)] = 54369, + [SMALL_STATE(1116)] = 54382, + [SMALL_STATE(1117)] = 54392, + [SMALL_STATE(1118)] = 54402, + [SMALL_STATE(1119)] = 54410, + [SMALL_STATE(1120)] = 54420, + [SMALL_STATE(1121)] = 54430, + [SMALL_STATE(1122)] = 54440, + [SMALL_STATE(1123)] = 54450, + [SMALL_STATE(1124)] = 54460, + [SMALL_STATE(1125)] = 54470, + [SMALL_STATE(1126)] = 54480, + [SMALL_STATE(1127)] = 54490, + [SMALL_STATE(1128)] = 54500, + [SMALL_STATE(1129)] = 54510, + [SMALL_STATE(1130)] = 54520, + [SMALL_STATE(1131)] = 54530, + [SMALL_STATE(1132)] = 54538, + [SMALL_STATE(1133)] = 54548, + [SMALL_STATE(1134)] = 54556, + [SMALL_STATE(1135)] = 54566, + [SMALL_STATE(1136)] = 54576, + [SMALL_STATE(1137)] = 54586, + [SMALL_STATE(1138)] = 54594, + [SMALL_STATE(1139)] = 54602, + [SMALL_STATE(1140)] = 54610, + [SMALL_STATE(1141)] = 54620, + [SMALL_STATE(1142)] = 54628, + [SMALL_STATE(1143)] = 54636, + [SMALL_STATE(1144)] = 54646, + [SMALL_STATE(1145)] = 54656, + [SMALL_STATE(1146)] = 54666, + [SMALL_STATE(1147)] = 54676, + [SMALL_STATE(1148)] = 54686, + [SMALL_STATE(1149)] = 54696, + [SMALL_STATE(1150)] = 54706, + [SMALL_STATE(1151)] = 54714, + [SMALL_STATE(1152)] = 54724, + [SMALL_STATE(1153)] = 54734, + [SMALL_STATE(1154)] = 54744, + [SMALL_STATE(1155)] = 54754, + [SMALL_STATE(1156)] = 54762, + [SMALL_STATE(1157)] = 54772, + [SMALL_STATE(1158)] = 54782, + [SMALL_STATE(1159)] = 54790, + [SMALL_STATE(1160)] = 54800, + [SMALL_STATE(1161)] = 54810, + [SMALL_STATE(1162)] = 54820, + [SMALL_STATE(1163)] = 54830, + [SMALL_STATE(1164)] = 54838, + [SMALL_STATE(1165)] = 54848, + [SMALL_STATE(1166)] = 54858, + [SMALL_STATE(1167)] = 54868, + [SMALL_STATE(1168)] = 54878, + [SMALL_STATE(1169)] = 54886, + [SMALL_STATE(1170)] = 54896, + [SMALL_STATE(1171)] = 54904, + [SMALL_STATE(1172)] = 54914, + [SMALL_STATE(1173)] = 54924, + [SMALL_STATE(1174)] = 54932, + [SMALL_STATE(1175)] = 54940, + [SMALL_STATE(1176)] = 54950, + [SMALL_STATE(1177)] = 54960, + [SMALL_STATE(1178)] = 54970, + [SMALL_STATE(1179)] = 54980, + [SMALL_STATE(1180)] = 54990, + [SMALL_STATE(1181)] = 54998, + [SMALL_STATE(1182)] = 55006, + [SMALL_STATE(1183)] = 55013, + [SMALL_STATE(1184)] = 55020, + [SMALL_STATE(1185)] = 55027, + [SMALL_STATE(1186)] = 55034, + [SMALL_STATE(1187)] = 55041, + [SMALL_STATE(1188)] = 55048, + [SMALL_STATE(1189)] = 55055, + [SMALL_STATE(1190)] = 55062, + [SMALL_STATE(1191)] = 55069, + [SMALL_STATE(1192)] = 55076, + [SMALL_STATE(1193)] = 55083, + [SMALL_STATE(1194)] = 55090, + [SMALL_STATE(1195)] = 55097, + [SMALL_STATE(1196)] = 55104, + [SMALL_STATE(1197)] = 55111, + [SMALL_STATE(1198)] = 55118, + [SMALL_STATE(1199)] = 55125, + [SMALL_STATE(1200)] = 55132, + [SMALL_STATE(1201)] = 55139, + [SMALL_STATE(1202)] = 55146, + [SMALL_STATE(1203)] = 55153, + [SMALL_STATE(1204)] = 55160, + [SMALL_STATE(1205)] = 55167, + [SMALL_STATE(1206)] = 55174, + [SMALL_STATE(1207)] = 55181, + [SMALL_STATE(1208)] = 55188, + [SMALL_STATE(1209)] = 55195, + [SMALL_STATE(1210)] = 55202, + [SMALL_STATE(1211)] = 55209, + [SMALL_STATE(1212)] = 55216, + [SMALL_STATE(1213)] = 55223, + [SMALL_STATE(1214)] = 55230, + [SMALL_STATE(1215)] = 55237, + [SMALL_STATE(1216)] = 55244, + [SMALL_STATE(1217)] = 55251, + [SMALL_STATE(1218)] = 55258, + [SMALL_STATE(1219)] = 55265, + [SMALL_STATE(1220)] = 55272, + [SMALL_STATE(1221)] = 55279, + [SMALL_STATE(1222)] = 55286, + [SMALL_STATE(1223)] = 55293, + [SMALL_STATE(1224)] = 55300, + [SMALL_STATE(1225)] = 55307, + [SMALL_STATE(1226)] = 55314, + [SMALL_STATE(1227)] = 55321, + [SMALL_STATE(1228)] = 55328, + [SMALL_STATE(1229)] = 55335, + [SMALL_STATE(1230)] = 55342, + [SMALL_STATE(1231)] = 55349, + [SMALL_STATE(1232)] = 55356, + [SMALL_STATE(1233)] = 55363, + [SMALL_STATE(1234)] = 55370, + [SMALL_STATE(1235)] = 55377, + [SMALL_STATE(1236)] = 55384, + [SMALL_STATE(1237)] = 55391, + [SMALL_STATE(1238)] = 55398, + [SMALL_STATE(1239)] = 55405, + [SMALL_STATE(1240)] = 55412, + [SMALL_STATE(1241)] = 55419, + [SMALL_STATE(1242)] = 55426, + [SMALL_STATE(1243)] = 55433, + [SMALL_STATE(1244)] = 55440, + [SMALL_STATE(1245)] = 55447, + [SMALL_STATE(1246)] = 55454, + [SMALL_STATE(1247)] = 55461, + [SMALL_STATE(1248)] = 55468, + [SMALL_STATE(1249)] = 55475, + [SMALL_STATE(1250)] = 55482, + [SMALL_STATE(1251)] = 55489, + [SMALL_STATE(1252)] = 55496, + [SMALL_STATE(1253)] = 55503, + [SMALL_STATE(1254)] = 55510, + [SMALL_STATE(1255)] = 55517, + [SMALL_STATE(1256)] = 55524, + [SMALL_STATE(1257)] = 55531, + [SMALL_STATE(1258)] = 55538, + [SMALL_STATE(1259)] = 55545, + [SMALL_STATE(1260)] = 55552, + [SMALL_STATE(1261)] = 55559, + [SMALL_STATE(1262)] = 55566, + [SMALL_STATE(1263)] = 55573, + [SMALL_STATE(1264)] = 55580, + [SMALL_STATE(1265)] = 55587, + [SMALL_STATE(1266)] = 55594, + [SMALL_STATE(1267)] = 55601, + [SMALL_STATE(1268)] = 55608, + [SMALL_STATE(1269)] = 55615, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -55406,1367 +55416,1368 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), [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), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), [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), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(239), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(939), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1260), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(780), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(164), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1017), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1018), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1020), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(61), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(999), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(234), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1132), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1249), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1248), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(692), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(220), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(895), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(879), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(873), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1240), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(208), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(197), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1237), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(301), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(147), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(331), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(998), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(331), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 4, .production_id = 101), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_case, 4, .production_id = 101), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 3, .production_id = 39), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_case, 3, .production_id = 39), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_case, 2), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_case, 2), + [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_communication_case, 3, .production_id = 88), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_communication_case, 3, .production_id = 88), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_case, 3, .production_id = 7), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_case, 3, .production_id = 7), + [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(456), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 2, .production_id = 26), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_labeled_statement, 2, .production_id = 26), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), [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), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), [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), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 86), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 57), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), [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), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 20), [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), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 20), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), [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), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 40), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 40), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 43), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 43), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 5), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(236), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(577), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1171), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(114), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(731), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1146), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1227), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1264), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(693), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(1247), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), [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), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(711), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 72), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 72), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 69), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 69), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1223), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(719), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 41), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 41), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_type, 1), SHIFT(711), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec_list, 3), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec_list, 3), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 93), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 93), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_type, 3, .production_id = 23), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_type, 3, .production_id = 23), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 3), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 3), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 70), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 70), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2, .production_id = 7), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2, .production_id = 7), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 3, .production_id = 27), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 3, .production_id = 27), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 4), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 4), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 31), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 31), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .dynamic_precedence = 2), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .dynamic_precedence = 2), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statement, 1), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statement, 1), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .dynamic_precedence = 2), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .dynamic_precedence = 2), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 21), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 21), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 73), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 73), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec_list, 2), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec_list, 2), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_clause, 2, .production_id = 2), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_clause, 2, .production_id = 2), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, .production_id = 46), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, .production_id = 46), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 71), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 71), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 2, .production_id = 15), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, .production_id = 15), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 94), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 94), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 6), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 6), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 1, .production_id = 3), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1, .production_id = 3), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type, 5), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type, 5), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 5, .production_id = 80), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 5, .production_id = 80), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .dynamic_precedence = 2), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .dynamic_precedence = 2), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1223), + [868] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(728), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(1228), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(80), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_type, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym__expression, 1), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(736), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT_REPEAT(296), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_spec, 2, .production_id = 16), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2, .production_id = 16), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 6), [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), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [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), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 4), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 4), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 5), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 5), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, .production_id = 102), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, .production_id = 102), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 91), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 91), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 99), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 99), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 90), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 90), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 62), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 62), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 61), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 61), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .production_id = 34), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .production_id = 34), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_conversion_expression, 4, .dynamic_precedence = -1, .production_id = 60), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_conversion_expression, 4, .dynamic_precedence = -1, .production_id = 60), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 4), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 4), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 3), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 3), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, .production_id = 105), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, .production_id = 105), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 2), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 2), [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), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 36), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 36), [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), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_conversion_expression, 5, .dynamic_precedence = -1, .production_id = 60), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_conversion_expression, 5, .dynamic_precedence = -1, .production_id = 60), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion_expression, 5, .production_id = 89), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion_expression, 5, .production_id = 89), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_literal, 2, .production_id = 13), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_literal, 2, .production_id = 13), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_literal, 4, .production_id = 44), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_literal, 4, .production_id = 44), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(719), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [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), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 1, .production_id = 25), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 1, .production_id = 25), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 1, .production_id = 4), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 1, .production_id = 4), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 2, .production_id = 17), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 2, .production_id = 17), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_statement, 1, .production_id = 59), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_statement, 2), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_statement, 2), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), [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), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 5), SHIFT(588), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_element, 1), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), [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), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 2, .production_id = 29), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_statement, 3, .production_id = 33), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_spec, 2, .production_id = 54), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_spec, 2, .production_id = 54), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 4, .production_id = 84), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), [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), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), [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), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1185), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(149), [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1243), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1225), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1203), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 65), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 65), - [1692] = {.entry = {.count = 1, .reusable = false}}, 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 = true}}, 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), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_spec_repeat1, 2), SHIFT_REPEAT(1219), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1228), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 68), SHIFT_REPEAT(1244), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 65), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_declaration_repeat1, 2, .production_id = 65), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 76), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1064), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1168), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1062), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(1177), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), SHIFT_REPEAT(998), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 5), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 5), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_name, 1, .production_id = 1), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_name, 1, .production_id = 1), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_term, 1, .production_id = 1), + [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(1015), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(175), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 78), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 78), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_spec_list_repeat1, 2), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), SHIFT_REPEAT(53), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2), SHIFT_REPEAT(1197), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(181), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 2, .production_id = 18), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 2, .production_id = 18), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 81), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 81), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_list_repeat1, 2), SHIFT_REPEAT(20), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2), SHIFT_REPEAT(20), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), SHIFT_REPEAT(704), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_switch_statement_repeat1, 2), SHIFT_REPEAT(1197), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 39), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 39), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), SHIFT_REPEAT(98), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_switch_statement_repeat1, 2), SHIFT_REPEAT(1197), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 3, .production_id = 38), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 3, .production_id = 38), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_list, 1), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 51), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 51), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 1, .production_id = 19), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 1, .production_id = 19), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_elem_repeat1, 2), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_elem_repeat1, 2), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_elem_repeat1, 2), SHIFT_REPEAT(921), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 30), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 30), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_statement, 2), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_statement, 2), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2), SHIFT_REPEAT(669), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 3, .production_id = 37), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 3, .production_id = 37), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_elem, 1), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_elem, 1), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_elem, 1), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_elem, 1), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 4, .production_id = 64), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 4, .production_id = 64), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 4, .production_id = 63), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 4, .production_id = 63), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 87), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 87), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 3, .production_id = 48), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_spec, 3, .production_id = 48), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_statement, 2), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_statement, 2), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 97), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 6, .production_id = 97), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fallthrough_statement, 1), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fallthrough_statement, 1), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 2, .production_id = 24), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_spec, 2, .production_id = 24), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 32), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 32), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 4, .production_id = 64), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 4, .production_id = 64), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_var_declaration, 3, .production_id = 33), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_var_declaration, 3, .production_id = 33), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 100), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 100), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statement_list_repeat1, 2), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 7, .production_id = 97), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 7, .production_id = 97), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 4, .production_id = 63), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 4, .production_id = 63), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constraint_elem_repeat1, 2), SHIFT_REPEAT(1065), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, .production_id = 8), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, .production_id = 8), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 2), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_elem, 2), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_elem, 2), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_spec, 5, .production_id = 92), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_spec, 5, .production_id = 92), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_elem, 2), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_elem, 2), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 3), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 3), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 5, .production_id = 92), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 5, .production_id = 92), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 9), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 9), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 4), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 4), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 82), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 82), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 2), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 2), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 4), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 7), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 7), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 3, .production_id = 47), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 3, .production_id = 47), + [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_goto_statement, 2, .production_id = 8), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, .production_id = 8), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, .production_id = 8), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, .production_id = 8), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_switch_statement, 5, .production_id = 58), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_switch_statement, 5, .production_id = 58), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 4), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 4), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_switch_statement, 4, .production_id = 58), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_switch_statement, 4, .production_id = 58), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 4, .production_id = 7), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 4, .production_id = 7), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_spec, 3, .production_id = 37), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_spec, 3, .production_id = 37), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 87), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_switch_statement, 5, .production_id = 87), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 3), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2192] = {.entry = {.count = 1, .reusable = true}}, 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 = true}}, 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 = true}}, SHIFT(541), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2269] = {.entry = {.count = 1, .reusable = true}}, 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 = true}}, SHIFT(351), - [2288] = {.entry = {.count = 1, .reusable = true}}, 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 = true}}, 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), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2), SHIFT_REPEAT(649), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_declaration_repeat1, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(702), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(472), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_term, 1, .production_id = 1), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_term, 2), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_term, 2), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(958), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(958), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_term, 2, .production_id = 53), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_term, 2, .production_id = 53), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_type_repeat1, 2), SHIFT_REPEAT(766), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_type_repeat1, 2), SHIFT_REPEAT(766), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_type_repeat1, 2), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(997), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2364] = {.entry = {.count = 1, .reusable = true}}, 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 = true}}, 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 = true}}, SHIFT(423), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2388] = {.entry = {.count = 1, .reusable = true}}, 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), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_term, 1), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_term, 1), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(636), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_name, 1), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_type_name, 1), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 74), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 74), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 75), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 75), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_type_repeat1, 2), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 77), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 77), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 67), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_case, 4, .production_id = 7), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 95), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 95), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 50), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 50), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 52), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 52), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_communication_case, 4, .production_id = 88), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 19), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(218), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_list, 4), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_spec, 3, .production_id = 79), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_spec, 3, .production_id = 79), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(674), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 4, .production_id = 39), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_case, 5, .production_id = 101), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(87), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_value_repeat1, 2), SHIFT_REPEAT(51), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_value_repeat1, 2), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 18), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_case, 3), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_list, 1), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2), SHIFT_REPEAT(142), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 3, .production_id = 66), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 39), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 39), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 3, .production_id = 66), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(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), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_argument, 2), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_element, 3), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 1), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 83), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 55), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 9, .production_id = 106), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 7, .production_id = 104), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 7, .production_id = 103), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_switch_header, 5, .production_id = 98), + [2766] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 85), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_length_array_type, 4, .production_id = 45), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), [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), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 96), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), }; #ifdef __cplusplus